From b124fec7ce84c7e01429dbec962d638acea1d956 Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Thu, 11 Jul 2024 13:27:44 -0500 Subject: [PATCH 01/27] Change damping parameters to match new GW values This commit changes the damping parameters in default_vars.sh and global_control.nml.IN to reflect new optimal values that are going to be used in the global workflow. --- tests/default_vars.sh | 100 +++++++++++++++++++++++++++++++ tests/parm/global_control.nml.IN | 12 ++-- tests/tests/control_p8_ugwpv1 | 1 + 3 files changed, 107 insertions(+), 6 deletions(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 4c1c259488..e4d187c499 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -534,6 +534,14 @@ export IMO=384 export JMO=190 export WRITE_NSFLIP=.true. +# New damping coefficients made the following +# dynamic based on resolution +export N_SPLIT=5 +export K_SPLIT=2 +export TAU=0.0 +export RF_CUTOFF=10. +export FV_SG_ADJ=450 + export DZ_MIN=6 export MIN_SEAICE=0.15 export FRAC_GRID=.true. @@ -632,6 +640,7 @@ export KNOB_UGWP_NDX4LH=1 export KNOB_UGWP_VERSION=0 export KNOB_UGWP_PALAUNCH=500.e2 export KNOB_UGWP_NSLOPE=1 +export KNOB_UGWP_TAUAMP=3.0e-3 export DO_UGWP_V0_NST_ONLY=.false. # resolution dependent settings @@ -899,6 +908,97 @@ export FNVMXC="'${ATMRES}.vegetation_greenness.tileX.nc'" export FNSLPC="'${ATMRES}.slope_type.tileX.nc'" export FNABSC="'${ATMRES}.maximum_snow_albedo.tileX.nc'" export LANDICE=".false." +# Add updated damping and timestep variables +case "${ATMRES}" in + "C48") + export DELTIM=1200 + export XR_CNVCLD=.false. + export CDMBGWD="0.071,2.1,1.0,1.0" + export CDMBGWD_GSL="40.0,1.77,1.0,1.0" + export KNOB_UGWP_TAUAMP=6.0e-3 + #export K_SPLIT=1 + export N_SPLIT=4 + export TAU=10.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=3600 + ;; + "C96") + export DELTIM=600 + export XR_CNVCLD=.false. + export CDMBGWD="0.14,1.8,1.0,1.0" + export CDMBGWD_GSL="20.0,2.5,1.0,1.0" + export KNOB_UGWP_TAUAMP=3.0e-3 + #export K_SPLIT=1 + export N_SPLIT=4 + export TAU=8.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=1800 + ;; + "C192") + export DELTIM=600 + export XR_CNVCLD=.true. + export CDMBGWD="0.23,1.5,1.0,1.0" + export CDMBGWD_GSL="5.0,5.0,1.0,1.0" + export KNOB_UGWP_TAUAMP=1.5e-3 + #export K_SPLIT=2 + export N_SPLIT=4 + export TAU=6.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=1800 + ;; + "C384") + export DELTIM=300 + export XR_CNVCLD=.true. + export CDMBGWD="1.1,0.72,1.0,1.0" + export CDMBGWD_GSL="5.0,5.0,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.8e-3 + #export K_SPLIT=2 + export N_SPLIT=4 + export TAU=4.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=900 + ;; + "C768") + export DELTIM=150 + export XR_CNVCLD=.true. + export CDMBGWD="4.0,0.15,1.0,1.0" + export CDMBGWD_GSL="2.5,7.5,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.5e-3 + #export K_SPLIT=2 + export N_SPLIT=4 + export TAU=3.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=450 + ;; + "C1152") + export DELTIM=150 + export XR_CNVCLD=.true. + export CDMBGWD="4.0,0.10,1.0,1.0" + export CDMBGWD_GSL="1.67,8.8,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.35e-3 + #export K_SPLIT=2 + export N_SPLIT=6 + export TAU=2.5 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=450 + ;; + "C3072") + export DELTIM=90 + export XR_CNVCLD=.true. + export CDMBGWD="4.0,0.05,1.0,1.0" + export CDMBGWD_GSL="0.625,14.1,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.13e-3 + #export K_SPLIT=4 + export N_SPLIT=5 + export TAU=0.5 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=300 + ;; + *) + echo Invalid model resolution: ${ATMRES}. Please update specified variable ATMRES. + exit 1 + ;; + esac } # Defaults for the CICE6 model namelist, mx100 diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index 6158aa1657..c74f0cd543 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -37,9 +37,9 @@ n_sponge = 42 nudge_qv = .true. nudge_dz = .false. - tau = 0.0 + tau = @[TAU] fast_tau_w_sec = 0.2 - rf_cutoff = 10. + rf_cutoff = @[RF_CUTOFF] d2_bg_k1 = @[D2_BG_K1] d2_bg_k2 = @[D2_BG_K2] kord_tm = @[KORD_TM] @@ -52,13 +52,13 @@ beta = 0. a_imp = 1. p_fac = 0.1 - k_split = 2 - n_split = 5 + k_split = @[K_SPLIT] + n_split = @[N_SPLIT] nwat = 6 na_init = @[NA_INIT] d_ext = 0. dnats = @[DNATS] - fv_sg_adj = 450 + fv_sg_adj = @[FV_SG_ADJ] d2_bg = 0. nord = 2 dddmp = @[DDDMP] @@ -272,7 +272,7 @@ @[HIDE_UGWPV1] knob_ugwp_lzmin = 0.75e3 @[HIDE_UGWPV1] knob_ugwp_lzstar = 2.0e3 @[HIDE_UGWPV1] knob_ugwp_taumin = 0.25e-3 -@[HIDE_UGWPV1] knob_ugwp_tauamp = 3.0e-3 +@[HIDE_UGWPV1] knob_ugwp_tauamp = @[KNOB_UGWP_TAUAMP] @[HIDE_UGWPV1] knob_ugwp_lhmet = 200.0e3 @[HIDE_UGWPV1] knob_ugwp_orosolv = 'pss-1986' / diff --git a/tests/tests/control_p8_ugwpv1 b/tests/tests/control_p8_ugwpv1 index a62a9c1049..51386fd238 100644 --- a/tests/tests/control_p8_ugwpv1 +++ b/tests/tests/control_p8_ugwpv1 @@ -95,6 +95,7 @@ export LHEATSTRG=.false. export LSEASPRAY=.true. # UGWP1 +export K_SPLIT=4 export GWD_OPT=2 export CDMBWD=20.0,2.5,1.0,1.0 export DO_UGWP_V1=.true. From 6e0dd1f7b63cc82ce921ee9760b3977f4faf4730 Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Thu, 11 Jul 2024 14:45:48 -0400 Subject: [PATCH 02/27] Fix superlinter formatting issue Added quotes to fix SuperLinter issue. --- tests/default_vars.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index d2caae542d..a8a8418f29 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -997,7 +997,7 @@ case "${ATMRES}" in export FV_SG_ADJ=300 ;; *) - echo Invalid model resolution: ${ATMRES}. Please update specified variable ATMRES. + echo Invalid model resolution: "${ATMRES}". Please update specified variable ATMRES. exit 1 ;; esac From d60ed3e9000c24aaeee26728cd2ba660358c2843 Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Mon, 29 Jul 2024 13:44:43 -0500 Subject: [PATCH 03/27] Change default_vars.sh to add parameters Adding parameters to default_vars.sh and changing two RTs for testing. --- tests/default_vars.sh | 218 ++++++++++++++++---------------- tests/tests/control_p8_ugwpv1 | 3 +- tests/tests/cpld_control_gfsv17 | 10 ++ 3 files changed, 123 insertions(+), 108 deletions(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index a8a8418f29..2ca087cb46 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -894,112 +894,118 @@ export FNAISC="'IMS-NIC.blended.ice.monthly.clim.grb'" # Add section for tiled grid namelist export_tiled() { -export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" -export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" -export FNALBC="'${ATMRES}.snowfree_albedo.tileX.nc'" -export FNALBC2="'${ATMRES}.facsf.tileX.nc'" -export FNTG3C="'${ATMRES}.substrate_temperature.tileX.nc'" -export FNVEGC="'${ATMRES}.vegetation_greenness.tileX.nc'" -export FNVETC="'${ATMRES}.vegetation_type.tileX.nc'" -export FNSOTC="'${ATMRES}.soil_type.tileX.nc'" -export FNSOCC="'${ATMRES}.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'${ATMRES}.vegetation_greenness.tileX.nc'" -export FNVMXC="'${ATMRES}.vegetation_greenness.tileX.nc'" -export FNSLPC="'${ATMRES}.slope_type.tileX.nc'" -export FNABSC="'${ATMRES}.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -# Add updated damping and timestep variables -case "${ATMRES}" in - "C48") - export DELTIM=1200 - export XR_CNVCLD=.false. - export CDMBGWD="0.071,2.1,1.0,1.0" - export CDMBGWD_GSL="40.0,1.77,1.0,1.0" - export KNOB_UGWP_TAUAMP=6.0e-3 - #export K_SPLIT=1 - export N_SPLIT=4 - export TAU=10.0 - export RF_CUTOFF=100.0 - export FV_SG_ADJ=3600 - ;; - "C96") - export DELTIM=600 - export XR_CNVCLD=.false. - export CDMBGWD="0.14,1.8,1.0,1.0" - export CDMBGWD_GSL="20.0,2.5,1.0,1.0" - export KNOB_UGWP_TAUAMP=3.0e-3 - #export K_SPLIT=1 - export N_SPLIT=4 - export TAU=8.0 - export RF_CUTOFF=100.0 - export FV_SG_ADJ=1800 - ;; - "C192") - export DELTIM=600 - export XR_CNVCLD=.true. - export CDMBGWD="0.23,1.5,1.0,1.0" - export CDMBGWD_GSL="5.0,5.0,1.0,1.0" - export KNOB_UGWP_TAUAMP=1.5e-3 - #export K_SPLIT=2 - export N_SPLIT=4 - export TAU=6.0 - export RF_CUTOFF=100.0 - export FV_SG_ADJ=1800 - ;; - "C384") - export DELTIM=300 - export XR_CNVCLD=.true. - export CDMBGWD="1.1,0.72,1.0,1.0" - export CDMBGWD_GSL="5.0,5.0,1.0,1.0" - export KNOB_UGWP_TAUAMP=0.8e-3 - #export K_SPLIT=2 - export N_SPLIT=4 - export TAU=4.0 - export RF_CUTOFF=100.0 - export FV_SG_ADJ=900 - ;; - "C768") - export DELTIM=150 - export XR_CNVCLD=.true. - export CDMBGWD="4.0,0.15,1.0,1.0" - export CDMBGWD_GSL="2.5,7.5,1.0,1.0" - export KNOB_UGWP_TAUAMP=0.5e-3 - #export K_SPLIT=2 - export N_SPLIT=4 - export TAU=3.0 - export RF_CUTOFF=100.0 - export FV_SG_ADJ=450 - ;; - "C1152") - export DELTIM=150 - export XR_CNVCLD=.true. - export CDMBGWD="4.0,0.10,1.0,1.0" - export CDMBGWD_GSL="1.67,8.8,1.0,1.0" - export KNOB_UGWP_TAUAMP=0.35e-3 - #export K_SPLIT=2 - export N_SPLIT=6 - export TAU=2.5 - export RF_CUTOFF=100.0 - export FV_SG_ADJ=450 - ;; - "C3072") - export DELTIM=90 - export XR_CNVCLD=.true. - export CDMBGWD="4.0,0.05,1.0,1.0" - export CDMBGWD_GSL="0.625,14.1,1.0,1.0" - export KNOB_UGWP_TAUAMP=0.13e-3 - #export K_SPLIT=4 - export N_SPLIT=5 - export TAU=0.5 - export RF_CUTOFF=100.0 - export FV_SG_ADJ=300 - ;; - *) - echo Invalid model resolution: "${ATMRES}". Please update specified variable ATMRES. - exit 1 - ;; + export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" + export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" + export FNALBC="'${ATMRES}.snowfree_albedo.tileX.nc'" + export FNALBC2="'${ATMRES}.facsf.tileX.nc'" + export FNTG3C="'${ATMRES}.substrate_temperature.tileX.nc'" + export FNVEGC="'${ATMRES}.vegetation_greenness.tileX.nc'" + export FNVETC="'${ATMRES}.vegetation_type.tileX.nc'" + export FNSOTC="'${ATMRES}.soil_type.tileX.nc'" + export FNSOCC="'${ATMRES}.soil_color.tileX.nc'" + export FNSMCC=${FNSMCC_control} + export FNMSKH=${FNMSKH_control} + export FNVMNC="'${ATMRES}.vegetation_greenness.tileX.nc'" + export FNVMXC="'${ATMRES}.vegetation_greenness.tileX.nc'" + export FNSLPC="'${ATMRES}.slope_type.tileX.nc'" + export FNABSC="'${ATMRES}.maximum_snow_albedo.tileX.nc'" + export LANDICE=".false." +} + +export_ugwpv1() { + export DO_UGWP_V1=.true. + export DO_UGWP_V0=.false. + + # Add updated damping and timestep variables + case "${ATMRES}" in + "C48") + export DELTIM=1200 + export XR_CNVCLD=.false. + export CDMBGWD="0.071,2.1,1.0,1.0" + export CDMBGWD_GSL="40.0,1.77,1.0,1.0" + export KNOB_UGWP_TAUAMP=6.0e-3 + export K_SPLIT=1 + export N_SPLIT=4 + export TAU=10.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=3600 + ;; + "C96") + export DELTIM=600 + export XR_CNVCLD=.false. + export CDMBGWD="0.14,1.8,1.0,1.0" + export CDMBGWD_GSL="20.0,2.5,1.0,1.0" + export KNOB_UGWP_TAUAMP=3.0e-3 + export K_SPLIT=1 + export N_SPLIT=4 + export TAU=8.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=1800 + ;; + "C192") + export DELTIM=600 + export XR_CNVCLD=.true. + export CDMBGWD="0.23,1.5,1.0,1.0" + export CDMBGWD_GSL="5.0,5.0,1.0,1.0" + export KNOB_UGWP_TAUAMP=1.5e-3 + export K_SPLIT=2 + export N_SPLIT=4 + export TAU=6.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=1800 + ;; + "C384") + export DELTIM=300 + export XR_CNVCLD=.true. + export CDMBGWD="1.1,0.72,1.0,1.0" + export CDMBGWD_GSL="5.0,5.0,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.8e-3 + export K_SPLIT=2 + export N_SPLIT=4 + export TAU=4.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=900 + ;; + "C768") + export DELTIM=150 + export XR_CNVCLD=.true. + export CDMBGWD="4.0,0.15,1.0,1.0" + export CDMBGWD_GSL="2.5,7.5,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.5e-3 + export K_SPLIT=2 + export N_SPLIT=4 + export TAU=3.0 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=450 + ;; + "C1152") + export DELTIM=150 + export XR_CNVCLD=.true. + export CDMBGWD="4.0,0.10,1.0,1.0" + export CDMBGWD_GSL="1.67,8.8,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.35e-3 + export K_SPLIT=2 + export N_SPLIT=6 + export TAU=2.5 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=450 + ;; + "C3072") + export DELTIM=90 + export XR_CNVCLD=.true. + export CDMBGWD="4.0,0.05,1.0,1.0" + export CDMBGWD_GSL="0.625,14.1,1.0,1.0" + export KNOB_UGWP_TAUAMP=0.13e-3 + export K_SPLIT=4 + export N_SPLIT=5 + export TAU=0.5 + export RF_CUTOFF=100.0 + export FV_SG_ADJ=300 + ;; + *) + echo Invalid model resolution: "${ATMRES}". Please update specified variable ATMRES. + exit 1 + ;; esac } diff --git a/tests/tests/control_p8_ugwpv1 b/tests/tests/control_p8_ugwpv1 index 51386fd238..004163f584 100644 --- a/tests/tests/control_p8_ugwpv1 +++ b/tests/tests/control_p8_ugwpv1 @@ -56,6 +56,7 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -97,8 +98,6 @@ export LSEASPRAY=.true. # UGWP1 export K_SPLIT=4 export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. export KNOB_UGWP_VERSION=1 export KNOB_UGWP_NSLOPE=1 export DO_UGWP_V0=.false. diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 01426380af..fd9d2ec3b1 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -136,3 +136,13 @@ export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. export DO_GSL_DRAG_TOFD=.true. +export DELTIM=600 +export XR_CNVCLD=.false. +export CDMBGWD="20.0,2.5,1.0,1.0" +export KNOB_UGWP_TAUAMP=3.0e-3 +export K_SPLIT=1 +export N_SPLIT=4 +export TAU=8.0 +export RF_CUTOFF=100.0 +export FV_SG_ADJ=1800 + From 6a32ae254563f7510e39fbe9a82718747f7437d8 Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Fri, 9 Aug 2024 09:07:28 -0500 Subject: [PATCH 04/27] Adds changes to default_vars and creates export_ugwpv1 This commit adds a new export_ugwpv1 fucntion to default_vars that assigns the new paramter values to tests that are currently using the version 1 of ugwp. --- tests/default_vars.sh | 20 ++++++++++++-------- tests/tests/control_p8_mynn | 1 + tests/tests/cpld_control_gfsv17 | 11 +---------- tests/tests/cpld_control_gfsv17_iau | 1 + tests/tests/cpld_control_sfs | 1 + tests/tests/cpld_debug_gfsv17 | 1 + tests/tests/cpld_mpi_gfsv17 | 1 + tests/tests/cpld_restart_gfsv17 | 1 + 8 files changed, 19 insertions(+), 18 deletions(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 53ee9fb706..c420503abf 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -755,7 +755,6 @@ export FSICS=0 # Dynamical core export FV_CORE_TAU=0. -export RF_CUTOFF=10.0 export FAST_TAU_W_SEC=0.2 export DRY_MASS=98320.0 @@ -925,7 +924,7 @@ export_ugwpv1() { export CDMBGWD="0.071,2.1,1.0,1.0" export CDMBGWD_GSL="40.0,1.77,1.0,1.0" export KNOB_UGWP_TAUAMP=6.0e-3 - export K_SPLIT=1 + #export K_SPLIT=1 export N_SPLIT=4 export TAU=10.0 export RF_CUTOFF=100.0 @@ -937,7 +936,7 @@ export_ugwpv1() { export CDMBGWD="0.14,1.8,1.0,1.0" export CDMBGWD_GSL="20.0,2.5,1.0,1.0" export KNOB_UGWP_TAUAMP=3.0e-3 - export K_SPLIT=1 + #export K_SPLIT=1 export N_SPLIT=4 export TAU=8.0 export RF_CUTOFF=100.0 @@ -947,9 +946,10 @@ export_ugwpv1() { export DELTIM=600 export XR_CNVCLD=.true. export CDMBGWD="0.23,1.5,1.0,1.0" + export CDMBGWD="5.0,5.0,1.0,1.0" export CDMBGWD_GSL="5.0,5.0,1.0,1.0" export KNOB_UGWP_TAUAMP=1.5e-3 - export K_SPLIT=2 + #export K_SPLIT=2 export N_SPLIT=4 export TAU=6.0 export RF_CUTOFF=100.0 @@ -961,7 +961,7 @@ export_ugwpv1() { export CDMBGWD="1.1,0.72,1.0,1.0" export CDMBGWD_GSL="5.0,5.0,1.0,1.0" export KNOB_UGWP_TAUAMP=0.8e-3 - export K_SPLIT=2 + #export K_SPLIT=2 export N_SPLIT=4 export TAU=4.0 export RF_CUTOFF=100.0 @@ -973,7 +973,7 @@ export_ugwpv1() { export CDMBGWD="4.0,0.15,1.0,1.0" export CDMBGWD_GSL="2.5,7.5,1.0,1.0" export KNOB_UGWP_TAUAMP=0.5e-3 - export K_SPLIT=2 + #export K_SPLIT=2 export N_SPLIT=4 export TAU=3.0 export RF_CUTOFF=100.0 @@ -985,7 +985,7 @@ export_ugwpv1() { export CDMBGWD="4.0,0.10,1.0,1.0" export CDMBGWD_GSL="1.67,8.8,1.0,1.0" export KNOB_UGWP_TAUAMP=0.35e-3 - export K_SPLIT=2 + #export K_SPLIT=2 export N_SPLIT=6 export TAU=2.5 export RF_CUTOFF=100.0 @@ -997,7 +997,7 @@ export_ugwpv1() { export CDMBGWD="4.0,0.05,1.0,1.0" export CDMBGWD_GSL="0.625,14.1,1.0,1.0" export KNOB_UGWP_TAUAMP=0.13e-3 - export K_SPLIT=4 + #export K_SPLIT=4 export N_SPLIT=5 export TAU=0.5 export RF_CUTOFF=100.0 @@ -1008,6 +1008,10 @@ export_ugwpv1() { exit 1 ;; esac + + if [[ ${DO_GSL_DRAG_SS} = .true. ]]; then + export CDMBGWD=${CDMBGWD_GSL} + fi } # Defaults for the CICE6 model namelist, mx100 diff --git a/tests/tests/control_p8_mynn b/tests/tests/control_p8_mynn index 593b283f63..9eac9bb346 100644 --- a/tests/tests/control_p8_mynn +++ b/tests/tests/control_p8_mynn @@ -171,5 +171,6 @@ export LANDICE=".false." export FSICL=0 export FSICS=0 +export RF_CUTOFF=10. export IOVR=3 export ICLIQ_SW=2 diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index a69d2c81ec..ee654c1c63 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -71,6 +71,7 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 export CPLCHM=.false. export DNATS=0 @@ -136,13 +137,3 @@ export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. export DO_GSL_DRAG_TOFD=.true. -export DELTIM=600 -export XR_CNVCLD=.false. -export CDMBGWD="20.0,2.5,1.0,1.0" -export KNOB_UGWP_TAUAMP=3.0e-3 -export K_SPLIT=1 -export N_SPLIT=4 -export TAU=8.0 -export RF_CUTOFF=100.0 -export FV_SG_ADJ=1800 - diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index dbf82fe08c..9011030721 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -52,6 +52,7 @@ export LIST_FILES="sfcf024.nc \ export_fv3 export_cpl +export_ugwpv1 export CPLCHM=.false. export DNATS=0 diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 362e5a112d..9fdf5fd9ed 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -18,6 +18,7 @@ export LIST_FILES="sfcf021.nc \ export_fv3 export_cpl +export_ugwpv1 export CPLCHM=.false. export DNATS=0 diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 37220564ac..d353aefbd9 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -58,6 +58,7 @@ export LIST_FILES="sfcf003.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 export FHMAX=3 export DAYS=0.125 diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 6fc53f2686..f366117ee4 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -71,6 +71,7 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 export CPLCHM=.false. export DNATS=0 diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index 924c60a9b7..bc701e749e 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -60,6 +60,7 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 export CPLCHM=.false. export DNATS=0 From 50d66d9c12542175c08247fe83a6f8a94faaf962 Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Fri, 9 Aug 2024 19:22:22 -0500 Subject: [PATCH 05/27] Clean up RTs and add more variables for UGWPV1 Clean up some variable duplicates in the GWPv1 RTs. Other RTs will also need to get cleaned up. --- tests/default_vars.sh | 11 +++++++++++ tests/tests/control_p8_ugwpv1 | 16 +--------------- tests/tests/cpld_control_gfsv17 | 20 -------------------- tests/tests/cpld_control_gfsv17_iau | 20 -------------------- tests/tests/cpld_control_sfs | 20 -------------------- tests/tests/cpld_debug_gfsv17 | 19 ------------------- tests/tests/cpld_mpi_gfsv17 | 20 -------------------- tests/tests/cpld_restart_gfsv17 | 20 -------------------- 8 files changed, 12 insertions(+), 134 deletions(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index c420503abf..b9474de772 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -915,6 +915,17 @@ export_tiled() { export_ugwpv1() { export DO_UGWP_V1=.true. export DO_UGWP_V0=.false. + export GWD_OPT=2 + export KNOB_UGWP_VERSION=1 + export KNOB_UGWP_NSLOPE=1 + export DO_GSL_DRAG_LS_BL=.true. + export DO_GSL_DRAG_SS=.true. + export DO_GSL_DRAG_TOFD=.true. + export DO_UGWP_V1_OROG_ONLY=.false. + export DO_UGWP_V0_NST_ONLY=.false. + export LDIAG_UGWP=.false. + export KNOB_UGWP_DOKDIS=2 + export KNOB_UGWP_NDX4LH=4 # Add updated damping and timestep variables case "${ATMRES}" in diff --git a/tests/tests/control_p8_ugwpv1 b/tests/tests/control_p8_ugwpv1 index 004163f584..0f4ae0c778 100644 --- a/tests/tests/control_p8_ugwpv1 +++ b/tests/tests/control_p8_ugwpv1 @@ -57,6 +57,7 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled export_ugwpv1 + export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -95,21 +96,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export K_SPLIT=4 -export GWD_OPT=2 -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - # CA export DO_CA=.true. export CA_SGS=.true. diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index ee654c1c63..d65f09e3c5 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -91,22 +91,6 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 @@ -131,9 +115,5 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then fi # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index 9011030721..a85cc6adad 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -98,22 +98,6 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - export WW3_DOMAIN=global_270k export MESH_WAV=mesh.${WW3_DOMAIN}.nc export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} @@ -143,9 +127,5 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then fi # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 9fdf5fd9ed..5f09440b8f 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -49,22 +49,6 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 @@ -90,9 +74,5 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then fi # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index d353aefbd9..91f5866e88 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -86,21 +86,6 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - #GFSv17 settings export PROGSIGMA=.true. export IOPT_DIAG=2 @@ -123,9 +108,5 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then fi # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index f366117ee4..9cc69d1695 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -98,22 +98,6 @@ export CICE_BLCKY=`expr $NY_GLB / 2` export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 @@ -134,9 +118,5 @@ export PROGSIGMA=.true. export IOPT_DIAG=2 # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index bc701e749e..48ec4be972 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -99,22 +99,6 @@ WAV_tasks=$WAV_tasks_cpl_unstr export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads -# UGWP1 -export GWD_OPT=2 -export CDMBWD=20.0,2.5,1.0,1.0 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. -export KNOB_UGWP_DOKDIS=2 -export KNOB_UGWP_NDX4LH=4 - export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 @@ -136,9 +120,5 @@ export PROGSIGMA=.true. export IOPT_DIAG=2 # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. From 8be556667e27a7fa7fe465e58c23822958191dcb Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Thu, 22 Aug 2024 14:01:00 -0500 Subject: [PATCH 06/27] Adds ugwpv1 to global tests The UGWPV1 settings have been added to the global tests. The default_vars.sh script has a new function, export_ugwpv1, that auto-populates the environmental variables needed for the ugwpv1 physics. --- tests/default_vars.sh | 42 ++++++++++--------- tests/rt.conf | 24 +++++------ tests/tests/control_2threads_p8 | 19 ++------- tests/tests/control_CubedSphereGrid | 5 ++- tests/tests/control_CubedSphereGrid_debug | 5 ++- tests/tests/control_CubedSphereGrid_parallel | 5 ++- tests/tests/control_c192 | 9 ++-- tests/tests/control_c384 | 9 ++-- tests/tests/control_c48 | 5 +-- tests/tests/control_debug_p8 | 19 ++------- tests/tests/control_decomp_p8 | 19 ++------- tests/tests/control_latlon | 5 ++- tests/tests/control_noqr_p8 | 19 ++------- tests/tests/control_p8 | 19 ++------- tests/tests/control_p8_lndp | 19 ++------- tests/tests/control_p8_ugwpv1 | 2 - tests/tests/control_restart_noqr_p8 | 19 ++------- tests/tests/control_restart_p8 | 19 ++------- tests/tests/control_wrtGauss_netcdf_parallel | 5 ++- .../control_wrtGauss_netcdf_parallel_debug | 5 ++- tests/tests/cpld_2threads_p8 | 11 +++-- tests/tests/cpld_bmark_p8 | 13 +++--- tests/tests/cpld_control_c48 | 7 ++-- tests/tests/cpld_control_ciceC_p8 | 11 +++-- tests/tests/cpld_control_gfsv17 | 3 ++ tests/tests/cpld_control_noaero_p8 | 9 ++-- tests/tests/cpld_control_nowave_noaero_p8 | 9 ++-- tests/tests/cpld_control_p8 | 15 +++++-- tests/tests/cpld_control_p8.v2.sfc | 11 +++-- tests/tests/cpld_control_p8_faster | 7 ++++ tests/tests/cpld_control_p8_mixedmode | 11 +++-- tests/tests/cpld_control_pdlib_p8 | 9 ++-- tests/tests/cpld_control_qr_p8 | 11 +++-- tests/tests/cpld_control_sfs | 3 ++ tests/tests/cpld_debug_gfsv17 | 3 ++ tests/tests/cpld_debug_noaero_p8 | 5 +++ tests/tests/cpld_debug_p8 | 7 ++++ tests/tests/cpld_debug_pdlib_p8 | 5 +++ tests/tests/cpld_decomp_p8 | 11 +++-- tests/tests/cpld_mpi_gfsv17 | 4 ++ tests/tests/cpld_mpi_p8 | 11 +++-- tests/tests/cpld_mpi_pdlib_p8 | 5 +++ tests/tests/cpld_restart_p8 | 11 +++-- tests/tests/cpld_restart_pdlib_p8 | 11 +++-- tests/tests/cpld_restart_qr_p8 | 11 +++-- 45 files changed, 236 insertions(+), 251 deletions(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index b9474de772..156a9256bd 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -268,7 +268,7 @@ elif [[ ${MACHINE_ID} = jet ]]; then export OCN_tasks_cpl_c192=100 export ICE_tasks_cpl_c192=48 export WAV_tasks_cpl_c192=80 - export WLCLK_cpl_c192=120 + export WLCLK_cpl_c192=500 elif [[ ${MACHINE_ID} = s4 ]]; then @@ -411,7 +411,7 @@ else fi -export WLCLK_dflt=30 +export WLCLK_dflt=150 export WLCLK=${WLCLK_dflt} export CMP_DATAONLY=false @@ -930,85 +930,85 @@ export_ugwpv1() { # Add updated damping and timestep variables case "${ATMRES}" in "C48") - export DELTIM=1200 + export DT_ATMOS=720 export XR_CNVCLD=.false. export CDMBGWD="0.071,2.1,1.0,1.0" export CDMBGWD_GSL="40.0,1.77,1.0,1.0" export KNOB_UGWP_TAUAMP=6.0e-3 - #export K_SPLIT=1 + export K_SPLIT=1 export N_SPLIT=4 export TAU=10.0 export RF_CUTOFF=100.0 export FV_SG_ADJ=3600 ;; "C96") - export DELTIM=600 + export DT_ATMOS=720 export XR_CNVCLD=.false. export CDMBGWD="0.14,1.8,1.0,1.0" export CDMBGWD_GSL="20.0,2.5,1.0,1.0" export KNOB_UGWP_TAUAMP=3.0e-3 - #export K_SPLIT=1 + export K_SPLIT=1 export N_SPLIT=4 export TAU=8.0 export RF_CUTOFF=100.0 export FV_SG_ADJ=1800 ;; "C192") - export DELTIM=600 + export DT_ATMOS=600 export XR_CNVCLD=.true. export CDMBGWD="0.23,1.5,1.0,1.0" export CDMBGWD="5.0,5.0,1.0,1.0" export CDMBGWD_GSL="5.0,5.0,1.0,1.0" export KNOB_UGWP_TAUAMP=1.5e-3 - #export K_SPLIT=2 - export N_SPLIT=4 + export K_SPLIT=2 + export N_SPLIT=5 export TAU=6.0 export RF_CUTOFF=100.0 export FV_SG_ADJ=1800 ;; "C384") - export DELTIM=300 + export DT_ATMOS=300 export XR_CNVCLD=.true. export CDMBGWD="1.1,0.72,1.0,1.0" export CDMBGWD_GSL="5.0,5.0,1.0,1.0" export KNOB_UGWP_TAUAMP=0.8e-3 - #export K_SPLIT=2 + export K_SPLIT=2 export N_SPLIT=4 export TAU=4.0 export RF_CUTOFF=100.0 export FV_SG_ADJ=900 ;; "C768") - export DELTIM=150 + export DT_ATMOS=150 export XR_CNVCLD=.true. export CDMBGWD="4.0,0.15,1.0,1.0" export CDMBGWD_GSL="2.5,7.5,1.0,1.0" export KNOB_UGWP_TAUAMP=0.5e-3 - #export K_SPLIT=2 + export K_SPLIT=2 export N_SPLIT=4 export TAU=3.0 export RF_CUTOFF=100.0 export FV_SG_ADJ=450 ;; "C1152") - export DELTIM=150 + export DT_ATMOS=150 export XR_CNVCLD=.true. export CDMBGWD="4.0,0.10,1.0,1.0" export CDMBGWD_GSL="1.67,8.8,1.0,1.0" export KNOB_UGWP_TAUAMP=0.35e-3 - #export K_SPLIT=2 + export K_SPLIT=2 export N_SPLIT=6 export TAU=2.5 export RF_CUTOFF=100.0 export FV_SG_ADJ=450 ;; "C3072") - export DELTIM=90 + export DT_ATMOS=90 export XR_CNVCLD=.true. export CDMBGWD="4.0,0.05,1.0,1.0" export CDMBGWD_GSL="0.625,14.1,1.0,1.0" export KNOB_UGWP_TAUAMP=0.13e-3 - #export K_SPLIT=4 + export K_SPLIT=4 export N_SPLIT=5 export TAU=0.5 export RF_CUTOFF=100.0 @@ -1020,10 +1020,12 @@ export_ugwpv1() { ;; esac - if [[ ${DO_GSL_DRAG_SS} = .true. ]]; then - export CDMBGWD=${CDMBGWD_GSL} - fi + if [[ ${DO_GSL_DRAG_SS} = .true. ]]; then export CDMBGWD=${CDMBGWD_GSL}; fi + if [[ ${SEDI_SEMI} = .true. ]]; then export DT_ATMOS=$((DT_ATMOS/2)); fi + export DT_INNER=${DT_ATMOS} + } + # Defaults for the CICE6 model namelist, mx100 export_cice6() { diff --git a/tests/rt.conf b/tests/rt.conf index 07fa091e1b..5449a00693 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -38,7 +38,7 @@ RUN | cpld_control_sfs | - noaacloud COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | -COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | RUN | cpld_control_p8 | - noaacloud | baseline | RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 @@ -56,35 +56,35 @@ RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaaclo # Aerosol, no Wave RUN | cpld_s2sa_p8 | - noaacloud | baseline | -COMPILE | s2sw | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +COMPILE | s2sw | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | RUN | cpld_control_noaero_p8 | | baseline | RUN | cpld_control_nowave_noaero_p8 | - noaacloud | baseline | -COMPILE | s2swa_debug | intel | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +COMPILE | s2swa_debug | intel | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - wcoss2 noaacloud acorn | fv3 | RUN | cpld_debug_p8 | - wcoss2 acorn noaacloud | baseline | -COMPILE | s2sw_debug | intel | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +COMPILE | s2sw_debug | intel | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | - wcoss2 noaacloud acorn | fv3 | RUN | cpld_debug_noaero_p8 | - wcoss2 acorn noaacloud | baseline | # Waves and aerosol off for computing fluxes in mediator COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | RUN | cpld_control_noaero_p8_agrid | | baseline | -COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | RUN | cpld_control_c48 | | baseline | RUN | cpld_warmstart_c48 | - noaacloud | baseline | RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 -COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 | +COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DFASTER=ON | - noaacloud | fv3 | RUN | cpld_control_p8_faster | - noaacloud | baseline | # Unstructured WW3 mesh -COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 | +COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | RUN | cpld_control_pdlib_p8 | - noaacloud | baseline | RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 -COMPILE | s2sw_pdlib_debug | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | +COMPILE | s2sw_pdlib_debug | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | ### ATM tests ### @@ -163,7 +163,7 @@ RUN | control_p8_faster | - noaacloud RUN | regional_control_faster | | 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_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,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_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_flake,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 | @@ -418,17 +418,17 @@ RUN | rap_control_dyn64_phy32_debug | + hera hercules COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | #RUN | cpld_control_p8 | + hercules | baseline | -COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | +COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 | + hera hercules | fv3 | RUN | cpld_control_nowave_noaero_p8 | + hera hercules | baseline | COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | #RUN | cpld_debug_p8 | + hercules | baseline | # Unstructured WW3 -COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera hercules | fv3 | +COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + hera hercules | fv3 | RUN | cpld_control_pdlib_p8 | + hera hercules | baseline | -COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | +COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | RUN | cpld_debug_pdlib_p8 | + hercules | baseline | ### CDEPS Data Atmosphere test ### diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index 00dfea7e15..d48022f634 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -51,10 +51,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -92,19 +93,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -155,7 +143,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid b/tests/tests/control_CubedSphereGrid index 772432a196..52bf0f12c9 100644 --- a/tests/tests/control_CubedSphereGrid +++ b/tests/tests/control_CubedSphereGrid @@ -34,9 +34,11 @@ export LIST_FILES="sfcf000.tile1.nc \ atmf024.tile6.nc" export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -50,5 +52,4 @@ export IOVR=3 export WRITE_DOPOST=.false. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid_debug b/tests/tests/control_CubedSphereGrid_debug index 93681bb8a2..1789845883 100644 --- a/tests/tests/control_CubedSphereGrid_debug +++ b/tests/tests/control_CubedSphereGrid_debug @@ -35,9 +35,11 @@ export LIST_FILES="sfcf000.tile1.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -50,5 +52,4 @@ export IOVR=3 export OUTPUT_FH="0 1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid_parallel b/tests/tests/control_CubedSphereGrid_parallel index 45963ad8f5..6bd709a41a 100644 --- a/tests/tests/control_CubedSphereGrid_parallel +++ b/tests/tests/control_CubedSphereGrid_parallel @@ -23,9 +23,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -41,5 +43,4 @@ export HISTORY_FILE_ON_NATIVE_GRID=.true. export WRITE_DOPOST=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_c192 b/tests/tests/control_c192 index 9ca7c3ace7..d72b2f7289 100644 --- a/tests/tests/control_c192 +++ b/tests/tests/control_c192 @@ -21,19 +21,22 @@ export ATMRES=C192 export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export INPES=4 export WRTTASK_PER_GROUP=12 export NPZ=127 export NPZP=128 export NPX=193 export NPY=193 -export DT_ATMOS=360 +#export DT_ATMOS=360 export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 export RESTART_INTERVAL=48 -export CDMBWD=${CDMBWD_c192} +#export CDMBWD=${CDMBWD_c192} export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. @@ -43,5 +46,5 @@ export IMO=768 export JMO=384 export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 +#export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_c384 b/tests/tests/control_c384 index ed42237a87..2561107384 100644 --- a/tests/tests/control_c384 +++ b/tests/tests/control_c384 @@ -21,6 +21,9 @@ export ATMRES=C384 export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export atm_omp_num_threads=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} @@ -35,9 +38,9 @@ export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export DT_ATMOS=225 +#export DT_ATMOS=225 export RESTART_INTERVAL=0 -export CDMBWD=${CDMBWD_c384} +#export CDMBWD=${CDMBWD_c384} export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. @@ -48,7 +51,7 @@ export JMO=768 export OUTPUT_FH="6 -1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 +#export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN if [[ $MACHINE_ID = jet ]]; then diff --git a/tests/tests/control_c48 b/tests/tests/control_c48 index 9ffa2ce490..940fbe44ee 100644 --- a/tests/tests/control_c48 +++ b/tests/tests/control_c48 @@ -47,6 +47,8 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 export INPES=1 export JNPES=1 @@ -55,13 +57,11 @@ export NPZ=127 export NPZP=128 export NPX=49 export NPY=49 -export DT_ATMOS=1200 export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 export RESTART_INTERVAL=0 -export CDMBWD=${CDMBWD_c48} export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.false. @@ -77,5 +77,4 @@ export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index c5f823c4b2..dc8521b587 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -15,10 +15,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -52,19 +53,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -97,7 +85,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index e9f22a92c0..867e2457c7 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -51,10 +51,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -92,19 +93,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -141,7 +129,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_latlon b/tests/tests/control_latlon index a46b819168..a5cbce2863 100644 --- a/tests/tests/control_latlon +++ b/tests/tests/control_latlon @@ -19,9 +19,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -37,5 +39,4 @@ export OUTPUT_FH='0 24' export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_noqr_p8 b/tests/tests/control_noqr_p8 index dd3cd82113..47e065497c 100644 --- a/tests/tests/control_noqr_p8 +++ b/tests/tests/control_noqr_p8 @@ -55,10 +55,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -94,19 +95,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -139,7 +127,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 26ab79b7fb..5ef5b0acae 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -55,10 +55,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -93,19 +94,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -138,7 +126,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_p8_lndp b/tests/tests/control_p8_lndp index 4f5742b448..3414969d4f 100644 --- a/tests/tests/control_p8_lndp +++ b/tests/tests/control_p8_lndp @@ -27,10 +27,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -66,19 +67,6 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -111,7 +99,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_p8_ugwpv1 b/tests/tests/control_p8_ugwpv1 index 0f4ae0c778..a580362248 100644 --- a/tests/tests/control_p8_ugwpv1 +++ b/tests/tests/control_p8_ugwpv1 @@ -60,8 +60,6 @@ export_ugwpv1 export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 diff --git a/tests/tests/control_restart_noqr_p8 b/tests/tests/control_restart_noqr_p8 index f3baca99f7..3465569ad6 100644 --- a/tests/tests/control_restart_noqr_p8 +++ b/tests/tests/control_restart_noqr_p8 @@ -47,10 +47,11 @@ export LIST_FILES="sfcf024.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -93,19 +94,6 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -138,7 +126,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index 50be1ec0dd..27808b02c4 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -47,10 +47,11 @@ export LIST_FILES="sfcf024.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -92,19 +93,6 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - # CA export DO_CA=.true. export CA_SGS=.true. @@ -137,7 +125,6 @@ export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_cpld.IN export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_wrtGauss_netcdf_parallel b/tests/tests/control_wrtGauss_netcdf_parallel index d90184da4d..8ee30f0ad1 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel +++ b/tests/tests/control_wrtGauss_netcdf_parallel @@ -19,9 +19,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -36,5 +38,4 @@ export IDEFLATE=1 export QUANTIZE_NSD=14 export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_wrtGauss_netcdf_parallel_debug b/tests/tests/control_wrtGauss_netcdf_parallel_debug index 2988ec0782..8d29303cef 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel_debug +++ b/tests/tests/control_wrtGauss_netcdf_parallel_debug @@ -15,9 +15,11 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export_tiled +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 + export NPZ=127 export NPZP=128 -export DT_ATMOS=720 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -33,5 +35,4 @@ export QUANTIZE_NSD=14 export OUTPUT_FH="0 1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index 66c0a88240..3612e62529 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -93,10 +95,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 14f127024e..8a0229c38e 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -53,6 +53,8 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export SYEAR=2013 export SMONTH=04 @@ -107,8 +109,6 @@ export MESH_WAV=mesh.${WW3_DOMAIN}.nc export WW3_MODDEF=mod_def.${WW3_DOMAIN} # set component and coupling timesteps -export DT_ATMOS=300 -export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=900 export DT_THERM_MOM6=1800 @@ -144,14 +144,11 @@ export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" #BMICs do not contain NSST spinup export NSTF_NAME=2,1,0,0,0 -export CDMBWD=${CDMBWD_c384} - export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index 0a21f62be7..f90cad4b81 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -55,6 +55,9 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 + +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -140,9 +143,5 @@ export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index b99fb22832..e3c1a9f462 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -84,10 +86,11 @@ export CICE_GRIDICE=C export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index d65f09e3c5..98b9f8a077 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -114,6 +114,9 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index f191cc8dd5..e918aa1f63 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -70,6 +70,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -87,10 +89,9 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index 34bcd8d921..0647cd8e79 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -70,6 +70,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -105,10 +107,9 @@ export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 67243979f3..8f1e7bb8f2 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -86,10 +88,15 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index 30ed1593fb..b754f76072 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -87,10 +89,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster index fcf93cd106..5a751b24d8 100644 --- a/tests/tests/cpld_control_p8_faster +++ b/tests/tests/cpld_control_p8_faster @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -82,6 +84,11 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. export DO_UGWP_V1=.true. diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index b01765abdf..10669918f3 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -82,10 +84,11 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 252481a48a..2d4be1e695 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -70,6 +70,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -106,10 +108,9 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 index 9618a05e6b..a79b1a6d82 100644 --- a/tests/tests/cpld_control_qr_p8 +++ b/tests/tests/cpld_control_qr_p8 @@ -71,6 +71,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export QUILTING_RESTART=.true. export RESTART_N=12 @@ -83,10 +85,11 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 5f09440b8f..69c909f3b8 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -73,6 +73,9 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 91f5866e88..78d495a848 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -103,6 +103,9 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index ec5114a81d..befc62f92a 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -58,6 +58,8 @@ export LIST_FILES="sfcf003.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHMAX=3 export DAYS=0.125 @@ -78,6 +80,9 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. export DO_UGWP_V1=.true. diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index ed304b3b3d..9267cf6f8e 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf003.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHMAX=3 export DAYS=0.125 @@ -77,6 +79,11 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. export DO_UGWP_V1=.true. diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index e0a2383ce5..5b4797d865 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -58,6 +58,8 @@ export LIST_FILES="sfcf003.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHMAX=3 export DAYS=0.125 @@ -99,6 +101,9 @@ if [[ $MACHINE_ID = hera && $RT_COMPILER = gnu ]] || [[ $MACHINE_ID = jet ]]; th WLCLK=50 fi +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. export DO_UGWP_V1=.true. diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 6c44601b3f..2642cc30a2 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -87,10 +89,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 9cc69d1695..36b1c81ea0 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -117,6 +117,10 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN export PROGSIGMA=.true. export IOPT_DIAG=2 +export K_SPLIT=2 +export N_SPLIT=5 + + # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index 84756f04d6..fcf8316ab0 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -87,10 +89,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index cd536948d2..b39cf25fdf 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -70,6 +70,8 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" @@ -105,6 +107,9 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. export DO_UGWP_V1=.true. diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index edbba45c3e..9895fd9d99 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHROT=12 export RESTART_N=$((FHMAX-$FHROT)) @@ -93,10 +95,11 @@ if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index e9e8a9d510..e7a9118a48 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -58,6 +58,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FHROT=12 export RESTART_N=$((FHMAX-$FHROT)) @@ -109,10 +111,11 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. -export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index 79ebaaf10e..33dd3e65d0 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -59,6 +59,8 @@ export LIST_FILES="sfcf024.tile1.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export QUILTING_RESTART=.true. export FHROT=12 @@ -90,10 +92,11 @@ export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. From 50970096d8d3a0983aab136d25d66f37b2352950 Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Thu, 22 Aug 2024 19:00:19 -0400 Subject: [PATCH 07/27] Revert testing WLCLK values --- tests/default_vars.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 5280af6a4e..5a469fe27e 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -268,7 +268,7 @@ elif [[ ${MACHINE_ID} = jet ]]; then export OCN_tasks_cpl_c192=100 export ICE_tasks_cpl_c192=48 export WAV_tasks_cpl_c192=80 - export WLCLK_cpl_c192=500 + export WLCLK_cpl_c192=120 elif [[ ${MACHINE_ID} = s4 ]]; then @@ -411,7 +411,7 @@ else fi -export WLCLK_dflt=150 +export WLCLK_dflt=30 export WLCLK=${WLCLK_dflt} export CMP_DATAONLY=false From 0d61d2ee5a6e94e256d17e7007fc22c5758121d8 Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Sat, 24 Aug 2024 13:48:44 +0000 Subject: [PATCH 08/27] Modify tests; add hera gnu catch --- tests/tests/control_c192 | 3 --- tests/tests/control_c384 | 3 --- tests/tests/control_c48 | 8 ++++++-- tests/tests/cpld_debug_gfsv17 | 2 ++ 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/tests/control_c192 b/tests/tests/control_c192 index d72b2f7289..8ba14ae125 100644 --- a/tests/tests/control_c192 +++ b/tests/tests/control_c192 @@ -30,13 +30,11 @@ export NPZ=127 export NPZP=128 export NPX=193 export NPY=193 -#export DT_ATMOS=360 export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 export RESTART_INTERVAL=48 -#export CDMBWD=${CDMBWD_c192} export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. @@ -46,5 +44,4 @@ export IMO=768 export JMO=384 export FV3_RUN=control_run.IN -#export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_c384 b/tests/tests/control_c384 index 2561107384..9619b89e3e 100644 --- a/tests/tests/control_c384 +++ b/tests/tests/control_c384 @@ -38,9 +38,7 @@ export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -#export DT_ATMOS=225 export RESTART_INTERVAL=0 -#export CDMBWD=${CDMBWD_c384} export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. @@ -51,7 +49,6 @@ export JMO=768 export OUTPUT_FH="6 -1" export FV3_RUN=control_run.IN -#export CCPP_SUITE=FV3_GFS_v17_p8 export INPUT_NML=global_control.nml.IN if [[ $MACHINE_ID = jet ]]; then diff --git a/tests/tests/control_c48 b/tests/tests/control_c48 index 940fbe44ee..a68ace8606 100644 --- a/tests/tests/control_c48 +++ b/tests/tests/control_c48 @@ -45,10 +45,14 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" +export ATMRES=C48 + export_fv3 export_tiled -export_ugwpv1 -export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 +if [[ $MACHINE_ID != hera ]] || [[ $RT_COMPILER != gnu ]]; then + export_ugwpv1 + export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 +fi export INPES=1 export JNPES=1 diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 78d495a848..1f64f8b861 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -103,6 +103,8 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN export FV3_RUN=cpld_control_run.IN +export DT_INNER=360 +export DT_ATMOS=360 export K_SPLIT=2 export N_SPLIT=5 From f6d1b6e83b5bc756e32013c9b784628c1b553e9e Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Mon, 26 Aug 2024 09:02:50 -0400 Subject: [PATCH 09/27] Fix cpld_control_p8 typo --- tests/tests/cpld_control_p8 | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 8f1e7bb8f2..36d22ef859 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -89,7 +89,6 @@ if [[ $MACHINE_ID = derecho ]]; then fi export DT_INNER=720 -export DT_ATMOS=720export DT_INNER=720 export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 From 96ff4a46e44d36f6761cdbd2e1e2a0c8cfd63794 Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Tue, 3 Sep 2024 10:14:10 -0400 Subject: [PATCH 10/27] Update cpld_control_p8 --- tests/tests/cpld_control_p8 | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 36d22ef859..fcb57d70fe 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -93,9 +93,6 @@ export DT_ATMOS=720 export K_SPLIT=4 export N_SPLIT=5 -export K_SPLIT=4 -export N_SPLIT=5 - # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. From 96dc231a504460217f84541fb1a546ac483bebdf Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Thu, 5 Sep 2024 12:20:57 -0400 Subject: [PATCH 11/27] Update default_vars.sh --- tests/default_vars.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 27c826cc90..66f3e281a1 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -962,7 +962,6 @@ export_ugwpv1() { export DT_ATMOS=600 export XR_CNVCLD=.true. export CDMBGWD="0.23,1.5,1.0,1.0" - export CDMBGWD="5.0,5.0,1.0,1.0" export CDMBGWD_GSL="5.0,5.0,1.0,1.0" export KNOB_UGWP_TAUAMP=1.5e-3 export K_SPLIT=2 From 3e36a4e8fb5eedc6f7765e7aa2225139dfb9e328 Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Mon, 9 Sep 2024 16:06:21 +0000 Subject: [PATCH 12/27] Add test_changes.list --- tests/test_changes.list | 34 +++++++++++++++++++++++++++++----- 1 file changed, 29 insertions(+), 5 deletions(-) diff --git a/tests/test_changes.list b/tests/test_changes.list index a2ab4baa0f..f147a757e3 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -4,6 +4,7 @@ cpld_control_gfsv17_iau intel cpld_restart_gfsv17 intel cpld_mpi_gfsv17 intel cpld_control_sfs intel +cpld_debug_gfsv17 intel cpld_control_p8 intel cpld_control_p8.v2.sfc intel cpld_restart_p8 intel @@ -15,15 +16,38 @@ cpld_mpi_p8 intel cpld_control_ciceC_p8 intel cpld_bmark_p8 intel cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel cpld_control_noaero_p8 intel cpld_control_nowave_noaero_p8 intel -cpld_control_noaero_p8_agrid intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel cpld_control_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel cpld_control_p8_faster intel cpld_control_pdlib_p8 intel cpld_restart_pdlib_p8 intel cpld_mpi_pdlib_p8 intel -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c192 intel +control_c384 intel +control_p8 intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_debug_p8 intel +atm_ds2s_docn_dice intel +control_c48 gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_debug_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu From c64ccb4c80d1f8c91039650319784bf96c81a676 Mon Sep 17 00:00:00 2001 From: zach1221 <99902696+zach1221@users.noreply.github.com> Date: Mon, 9 Sep 2024 14:53:22 -0400 Subject: [PATCH 13/27] 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 c4b77b6a55..a84c0c0cb8 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240904 +export BL_DATE=20240909 From 8528ebc4a99ae1e4d32790fdff46e3765451fb0d Mon Sep 17 00:00:00 2001 From: epic-cicd-jenkins Date: Tue, 10 Sep 2024 00:41:40 +0000 Subject: [PATCH 14/27] ORT Jobs Completed. on-behalf-of @ufs-community --- tests/logs/OpnReqTests_control_p8_hera.log | 62 +++---- ...sts_cpld_control_nowave_noaero_p8_hera.log | 166 +++++++++--------- .../OpnReqTests_regional_control_hera.log | 30 ++-- 3 files changed, 125 insertions(+), 133 deletions(-) diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 66336dba8c..e33433c2b4 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Sep 5 22:25:10 UTC 2024 +Mon Sep 9 23:10:23 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664740/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 = 288.390708 - 0: The maximum resident set size (KB) = 1444228 + 0: The total amount of wall time = 301.063864 + 0: The maximum resident set size (KB) = 1450936 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664740/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 = 991.170195 - 0: The maximum resident set size (KB) = 1442092 + 0: The total amount of wall time = 1003.768135 + 0: The maximum resident set size (KB) = 1432920 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664740/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 = 259.478625 - 0: The maximum resident set size (KB) = 1412816 + 0: The total amount of wall time = 272.986390 + 0: The maximum resident set size (KB) = 1418504 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664740/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 = 269.710451 - 0: The maximum resident set size (KB) = 1422344 + 0: The total amount of wall time = 271.716758 + 0: The maximum resident set size (KB) = 1429720 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664740/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 = 260.906817 - 0: The maximum resident set size (KB) = 1412512 + 0: The total amount of wall time = 271.525308 + 0: The maximum resident set size (KB) = 1430068 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664740/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 = 259.986892 - 0: The maximum resident set size (KB) = 1423876 + 0: The total amount of wall time = 270.165754 + 0: The maximum resident set size (KB) = 1429764 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_489716/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664740/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 = 263.854937 - 0: The maximum resident set size (KB) = 1422848 + 0: The total amount of wall time = 270.519887 + 0: The maximum resident set size (KB) = 1441764 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 5 23:39:10 UTC 2024 -Elapsed time: 01h:14m:01s. Have a nice day! +Tue Sep 10 00:41:38 UTC 2024 +Elapsed time: 01h:31m:15s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 98bba839bf..d95256847e 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,79 @@ -Thu Sep 5 16:38:28 UTC 2024 +Mon Sep 9 21:29:33 UTC 2024 Start Operation Requirement Test +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268951/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 2492.069029 + 0: The maximum resident set size (KB) = 1537788 + +Test dbg_base PASS + + baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_189371/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268951/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -65,14 +135,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 411.035636 - 0: The maximum resident set size (KB) = 1532184 + 0: The total amount of wall time = 654.617351 + 0: The maximum resident set size (KB) = 1509560 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_189371/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268951/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -135,89 +205,11 @@ Moving baseline std_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 403.644311 - 0: The maximum resident set size (KB) = 1531864 + 0: The total amount of wall time = 760.383664 + 0: The maximum resident set size (KB) = 1533208 Test std_base PASS -FAILED TESTS: -Test dbg_base failed in run_test failed -OPERATION REQUIREMENT TEST FAILED -Thu Sep 5 19:21:40 UTC 2024 -Elapsed time: 02h:43m:12s. Have a nice day! -Fri Sep 6 00:11:18 UTC 2024 -Start Operation Requirement Test - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3212875/dbg_base_dbg_base -Checking test dbg_base results .... -Moving baseline dbg_base files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Moving RESTART/20210323.060000.MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 1373.432258 - 0: The maximum resident set size (KB) = 1537784 - -Test dbg_base PASS - OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Sep 6 00:39:24 UTC 2024 -Elapsed time: 00h:28m:07s. Have a nice day! +Mon Sep 9 23:10:23 UTC 2024 +Elapsed time: 01h:40m:51s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index d20f6b1591..1f286e8dc1 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Sep 5 13:55:45 UTC 2024 +Mon Sep 9 18:57:45 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2601361/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 = 1390.806694 - 0: The maximum resident set size (KB) = 761164 + 0: The total amount of wall time = 1354.752756 + 0: The maximum resident set size (KB) = 769596 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2601361/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 = 2552.962684 - 0: The maximum resident set size (KB) = 734772 + 0: The total amount of wall time = 2166.948131 + 0: The maximum resident set size (KB) = 719548 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2601361/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 = 2288.297888 - 0: The maximum resident set size (KB) = 746724 + 0: The total amount of wall time = 2166.204837 + 0: The maximum resident set size (KB) = 732444 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2982289/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2601361/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 = 2342.966961 - 0: The maximum resident set size (KB) = 721088 + 0: The total amount of wall time = 2262.073130 + 0: The maximum resident set size (KB) = 734244 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 5 16:38:28 UTC 2024 -Elapsed time: 02h:42m:43s. Have a nice day! +Mon Sep 9 21:29:32 UTC 2024 +Elapsed time: 02h:31m:47s. Have a nice day! From 51a07c1585abc6f5dea12812f8f72a50ba92183a Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Tue, 10 Sep 2024 15:16:22 +0000 Subject: [PATCH 15/27] Add gnu catch to control_c48 --- tests/tests/control_c48 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests/control_c48 b/tests/tests/control_c48 index a68ace8606..0c0313f375 100644 --- a/tests/tests/control_c48 +++ b/tests/tests/control_c48 @@ -49,7 +49,7 @@ export ATMRES=C48 export_fv3 export_tiled -if [[ $MACHINE_ID != hera ]] || [[ $RT_COMPILER != gnu ]]; then +if [[ $RT_COMPILER != gnu ]]; then export_ugwpv1 export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 fi From 76e7979375d2670ad5232f063b5b996eebd9473f Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Wed, 11 Sep 2024 13:47:02 +0000 Subject: [PATCH 16/27] Modify tests for reproducibility errors --- tests/tests/cpld_control_pdlib_p8 | 4 +++- tests/tests/cpld_restart_bmark_p8 | 13 +++++-------- tests/tests/cpld_restart_gfsv17 | 3 +++ 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 2d4be1e695..7f87778cf7 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -108,7 +108,9 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi -export K_SPLIT=2 +export DT_INNER=720 +export DT_ATMOS=720 +export K_SPLIT=4 export N_SPLIT=5 # HR4 GFSv17 GWD update diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index d6a3b39d2d..ca3dc70ffc 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -53,6 +53,8 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl +export_ugwpv1 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export SYEAR=2013 export SMONTH=04 @@ -111,8 +113,6 @@ export MESH_WAV=mesh.${WW3_DOMAIN}.nc export WW3_MODDEF=mod_def.${WW3_DOMAIN} # set component and coupling timesteps -export DT_ATMOS=300 -export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=900 export DT_THERM_MOM6=1800 @@ -145,8 +145,6 @@ export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" -export CDMBWD=${CDMBWD_c384} - # ATM warm start export WARM_START=.true. export MAKE_NH=.false. @@ -165,10 +163,9 @@ export MOM6_RESTART_SETTING=r export FV3_RUN=cpld_control_run.IN +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index 48ec4be972..484c29da74 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -119,6 +119,9 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN export PROGSIGMA=.true. export IOPT_DIAG=2 +export K_SPLIT=2 +export N_SPLIT=5 + # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. From 94d3c1110e119e311d76266bdc79a376f12d856e Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Wed, 11 Sep 2024 17:32:16 +0000 Subject: [PATCH 17/27] Fix cpld_restart_pdlib_p8 --- tests/tests/cpld_restart_pdlib_p8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index e7a9118a48..6097f05559 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -117,5 +117,5 @@ export K_SPLIT=4 export N_SPLIT=5 # HR4 GFSv17 GWD update -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. From 1e79d1ea8db1f36049a4d15b79a00d69e724d4d0 Mon Sep 17 00:00:00 2001 From: FernandoAndrade-NOAA Date: Wed, 11 Sep 2024 22:29:17 +0000 Subject: [PATCH 18/27] add hera RT log passed --- tests/logs/RegressionTests_hera.log | 796 +++++++++++++++------------- 1 file changed, 432 insertions(+), 364 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index f9fb19a0a6..6e961e3796 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -8fb13929a4f74a9181c8d3f619893aaf6e507bc5 +c64ccb4c80d1f8c91039650319784bf96c81a676 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -12,7 +12,7 @@ Submodule hashes used in testing: 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,377 +24,445 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_439415 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3529378 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:12, 18:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:08, 07:25](3304 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 17:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:00, 17:54](1936 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:21, 18:45](2141 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:35](1237 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:52](1855 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:12, 16:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:48, 17:24](1967 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:13, 12:55] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:03, 26:07](1930 MB) - -PASS -- COMPILE 's2swa_intel' [23:12, 19:56] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:23, 06:15](3360 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:32, 06:58](3329 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:25, 03:58](3264 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:19, 06:38](3342 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:40, 03:42](3284 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:16, 08:44](3651 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:16, 06:33](3332 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:23, 05:43](3201 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:34, 07:26](3322 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:16, 11:30](3543 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:04, 06:56](3623 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:31, 10:48](4309 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:52, 06:35](4393 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:22, 06:04](3331 MB) - -PASS -- COMPILE 's2sw_intel' [21:12, 19:27] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:16, 05:42](1984 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:15, 05:15](2058 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 06:51] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:07, 09:01](3399 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:12, 05:56] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:07, 06:20](2011 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [21:14, 18:40] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:48](2054 MB) - -PASS -- COMPILE 's2s_intel' [20:12, 17:49] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:55, 10:09](3053 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 03:22](3043 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:51, 02:00](2477 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:54] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:17, 06:07](3343 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:54] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:10, 18:28](2000 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 08:41](1262 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:09, 20:36](1923 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:46] ( 1558 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:03, 26:34](1945 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:26, 04:11](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:48, 03:22](1589 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:51, 03:24](1599 MB) -PASS -- TEST 'control_latlon_intel' [05:44, 03:20](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:51, 03:21](1602 MB) -PASS -- TEST 'control_c48_intel' [09:50, 07:40](1727 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:29, 06:33](859 MB) -PASS -- TEST 'control_c192_intel' [14:04, 11:11](1747 MB) -PASS -- TEST 'control_c384_intel' [15:07, 11:42](1961 MB) -PASS -- TEST 'control_c384gdas_intel' [13:50, 09:03](1372 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:53](651 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:06](512 MB) -PASS -- TEST 'control_lndp_intel' [03:26, 01:42](654 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:48](657 MB) -PASS -- TEST 'control_iovr5_intel' [05:23, 03:22](658 MB) -PASS -- TEST 'control_p8_intel' [05:55, 03:23](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:02, 03:21](1894 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:10](1896 MB) -PASS -- TEST 'control_restart_p8_intel' [03:46, 01:49](1104 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:54, 03:14](1869 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:59, 01:42](1142 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:17](1852 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:49, 02:58](1982 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:37](1887 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 04:08](1952 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:13](1907 MB) -PASS -- TEST 'merra2_thompson_intel' [05:51, 03:28](1895 MB) -PASS -- TEST 'regional_control_intel' [07:37, 05:29](1088 MB) -PASS -- TEST 'regional_restart_intel' [04:37, 02:59](1087 MB) -PASS -- TEST 'regional_decomp_intel' [07:34, 05:59](1088 MB) -PASS -- TEST 'regional_2threads_intel' [05:34, 03:37](1080 MB) -PASS -- TEST 'regional_noquilt_intel' [07:41, 05:23](1394 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:22](1097 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:30](1086 MB) -PASS -- TEST 'regional_wofs_intel' [08:35, 06:58](1905 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:14] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:45, 08:00](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:19, 04:16](1250 MB) -PASS -- TEST 'rap_decomp_intel' [10:37, 08:33](1045 MB) -PASS -- TEST 'rap_2threads_intel' [09:33, 07:34](1169 MB) -PASS -- TEST 'rap_restart_intel' [06:53, 04:14](1089 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:40, 08:00](1095 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:39, 08:15](1037 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:51, 06:25](1121 MB) -PASS -- TEST 'hrrr_control_intel' [06:46, 04:04](1038 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:37, 04:16](1033 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:45](1104 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:15](998 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:43, 08:12](1089 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:35](1967 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:14](2069 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:50] -PASS -- TEST 'control_csawmg_intel' [08:39, 06:18](1020 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:24](734 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:11, 04:24] -PASS -- TEST 'control_csawmg_gnu' [11:37, 09:36](755 MB) - -PASS -- COMPILE 'wam_intel' [13:12, 11:27] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 11:34](1678 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 11:17] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:58, 02:47](1878 MB) -PASS -- TEST 'regional_control_faster_intel' [06:38, 05:04](1080 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:52] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:45](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:39](1626 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:19](819 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:48](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:38](1135 MB) -PASS -- TEST 'control_ras_debug_intel' [05:24, 03:10](838 MB) -PASS -- TEST 'control_diag_debug_intel' [04:48, 02:56](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [05:42, 03:14](1919 MB) -PASS -- TEST 'regional_debug_intel' [20:40, 18:20](1096 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:59](1222 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:55](1209 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 05:14](1217 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 05:02](1215 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:01](1218 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:42, 05:18](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:33](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:07](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:11](1216 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:13](1218 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:58](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:45](1207 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:21](1206 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:07](1205 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:23, 06:44](1210 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:00](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:44, 08:42](1220 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:12, 07:23] -PASS -- TEST 'control_csawmg_debug_gnu' [04:35, 02:21](725 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 06:10] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:47, 13:43](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 04:31](1119 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:41, 07:01](1066 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:32](982 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:36](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:26](967 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 04:03](936 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:41, 05:17](1036 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:55](932 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:00, 02:21](1193 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:01](1116 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:17](1102 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:25](982 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:11] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 05:01](1097 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:06](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [16:56, 15:00](1236 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:56](923 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:47, 08:44](1165 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:45, 16:51](1278 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:57] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:06](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 12:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:25, 05:21](725 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 07:05](1106 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:32, 07:26](848 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:18, 15:06](836 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:31, 16:12](872 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:12, 07:00](493 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 07:42](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 02:54](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:31, 08:40](471 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:54, 05:01](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:56, 04:46](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 05:34](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:19](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:36, 04:31](1753 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:10, 05:46] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:51, 13:20](596 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 12:05] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:02, 09:42](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:08, 09:37](700 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:55] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:37, 07:00](726 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:02] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:19, 07:34](810 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 07:21](797 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:06, 16:53](1217 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:44] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:46](1171 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 01:41](1113 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:42](1033 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:56](1028 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:50](1024 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:46](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:41](1166 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:33](1033 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:31, 06:20](1074 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 06:36](1059 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:49](1170 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 03:53](2503 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 03:59](2485 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:28] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 06:24](1097 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:44] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:42](1159 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:51](260 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:54](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:35](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:40] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:10, 03:58](1963 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:22] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:00, 03:51](1957 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 11:15] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:09, 04:39](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:01, 04:39](1868 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:29, 02:23](1096 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:49] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 06:05](1885 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:53] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 02:00](1913 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 11:07] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:58, 04:21](3204 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:59](3095 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:59](3109 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:55] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:13, 04:32] -PASS -- TEST 'control_c48_gnu' [13:39, 11:18](1511 MB) -PASS -- TEST 'control_stochy_gnu' [05:21, 03:27](497 MB) -PASS -- TEST 'control_ras_gnu' [06:22, 04:52](502 MB) -PASS -- TEST 'control_p8_gnu' [06:56, 04:52](1454 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:51, 04:47](1457 MB) -PASS -- TEST 'control_flake_gnu' [12:24, 10:40](539 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:12, 04:36] -PASS -- TEST 'rap_control_gnu' [12:39, 11:02](813 MB) -PASS -- TEST 'rap_decomp_gnu' [14:34, 12:48](811 MB) -PASS -- TEST 'rap_2threads_gnu' [13:33, 11:57](924 MB) -PASS -- TEST 'rap_restart_gnu' [07:43, 05:33](579 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [14:34, 12:28](818 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 11:49](842 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:48, 08:11](582 MB) -PASS -- TEST 'hrrr_control_gnu' [07:41, 05:41](818 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:45, 05:42](801 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:44, 05:06](915 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:48, 05:54](847 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:47, 03:09](566 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:51, 02:56](659 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:45, 10:44](809 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:39] -PASS -- TEST 'control_diag_debug_gnu' [03:44, 01:34](1275 MB) -PASS -- TEST 'regional_debug_gnu' [15:36, 13:38](761 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:38](830 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:25, 02:37](823 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:37](827 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:47](826 MB) -PASS -- TEST 'rap_diag_debug_gnu' [05:14, 02:52](910 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:24, 04:45](855 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:28, 02:40](825 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:30, 02:45](819 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:33](460 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:42](452 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:43, 01:50](1426 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:26, 02:52](827 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:21, 03:30](826 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:58](832 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:41] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:09] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:29, 10:51](709 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:39, 05:44](706 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:57](752 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:38, 05:47](743 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:32, 06:22](707 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [11:40, 07:22](556 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [09:28, 02:39](540 MB) -PASS -- TEST 'conus13km_control_gnu' [06:57, 03:56](876 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:44, 05:50](878 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [09:45, 02:00](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:46] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:41, 06:05](732 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:43] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 03:13](716 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:25, 03:38](717 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:54, 07:15](885 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [11:50, 07:35](573 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:45, 08:06](898 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:46, 07:01](959 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:49] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [07:25, 02:37](736 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:49] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:03] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:08, 06:53](1519 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:31] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 15:58] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [30:00, 25:19](1461 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:12, 03:21] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:32] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:00](691 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:12, 12:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:12, 06:19](3327 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 16:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:00, 17:35](1990 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:09, 18:16](2167 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:57, 19:43](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:14, 16:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:45, 17:12](1964 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:14, 06:02] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:11, 23:49](1889 MB) + +PASS -- COMPILE 's2swa_intel' [15:12, 12:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:13, 07:44](3335 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:22, 07:29](3368 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:15, 04:16](3268 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:14, 07:39](3364 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:21](3285 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:10, 07:09](3640 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:14, 07:40](3364 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:07, 06:15](3233 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:22, 07:33](3366 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:18, 10:15](3542 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:36, 06:20](3632 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:32, 08:37](4309 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:09, 05:47](3338 MB) + +PASS -- COMPILE 's2sw_intel' [14:14, 12:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:53, 05:38](1985 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:59, 07:17](2058 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:13, 05:51] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:14, 13:08](3376 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:13, 05:41] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:06, 09:14](2019 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:14, 11:13] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:59, 04:19](2014 MB) + +PASS -- COMPILE 's2s_intel' [13:14, 11:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:50](3041 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:41, 02:39](3031 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:38, 01:33](2477 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 16:41] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:13, 07:14](3343 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 15:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:59, 17:42](2020 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:54, 20:05](1926 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:36] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:10, 26:15](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:20, 03:19](711 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:36, 03:12](1599 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:41, 03:19](1593 MB) +PASS -- TEST 'control_latlon_intel' [05:36, 03:10](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 03:13](1595 MB) +PASS -- TEST 'control_c48_intel' [13:41, 11:31](1724 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:30](845 MB) +PASS -- TEST 'control_c192_intel' [13:51, 11:52](1756 MB) +PASS -- TEST 'control_c384_intel' [16:48, 13:24](1987 MB) +PASS -- TEST 'control_c384gdas_intel' [15:37, 08:11](1375 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:37](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:26, 00:59](507 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:32](660 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:28](651 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:28](657 MB) +PASS -- TEST 'control_p8_intel' [05:58, 03:39](1882 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:54, 03:04](1894 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 03:35](1876 MB) +PASS -- TEST 'control_restart_p8_intel' [04:44, 02:02](1127 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:50, 03:38](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:50, 02:00](1167 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:48, 03:41](1868 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:48, 03:32](1960 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:43, 06:34](1894 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:54, 04:08](1951 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:06](1899 MB) +PASS -- TEST 'merra2_thompson_intel' [05:50, 03:25](1895 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:28](1092 MB) +PASS -- TEST 'regional_restart_intel' [04:34, 02:52](1083 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 05:41](1090 MB) +PASS -- TEST 'regional_2threads_intel' [05:33, 03:25](1092 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:16](1389 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 05:16](1100 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 05:21](1089 MB) +PASS -- TEST 'regional_wofs_intel' [08:33, 06:49](1916 MB) + +PASS -- COMPILE 'rrfs_intel' [11:13, 10:05] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:41, 07:47](1115 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:06](1248 MB) +PASS -- TEST 'rap_decomp_intel' [10:42, 08:14](1040 MB) +PASS -- TEST 'rap_2threads_intel' [09:43, 07:21](1175 MB) +PASS -- TEST 'rap_restart_intel' [06:44, 04:03](1104 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:45, 07:46](1100 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:45, 08:11](1038 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:42, 05:52](1134 MB) +PASS -- TEST 'hrrr_control_intel' [06:38, 03:59](1043 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:38, 04:08](1032 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:38, 03:39](1101 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:29, 02:10](1002 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:50, 07:43](1095 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:20](1993 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:07](2065 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:48] +PASS -- TEST 'control_csawmg_intel' [07:36, 06:08](1017 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:18](743 MB) + +PASS -- COMPILE 'csawmg_gnu' [07:12, 04:14] +PASS -- TEST 'control_csawmg_gnu' [12:41, 08:31](741 MB) + +PASS -- COMPILE 'wam_intel' [12:12, 09:51] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:47, 11:08](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:12, 10:09] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:51, 02:46](1886 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 04:58](1086 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:12, 07:38] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:35, 02:14](1616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:17](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:03](832 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:51](829 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:36, 04:22](1145 MB) +PASS -- TEST 'control_ras_debug_intel' [04:25, 02:49](839 MB) +PASS -- TEST 'control_diag_debug_intel' [04:46, 02:43](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [04:41, 02:39](1915 MB) +PASS -- TEST 'regional_debug_intel' [19:38, 17:39](1113 MB) +PASS -- TEST 'rap_control_debug_intel' [07:23, 05:01](1218 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:58](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:04](1213 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:57](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:07](1222 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:19](1297 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:08](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:05](1219 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:06](1224 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:07](1215 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:58](1217 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:04](1217 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:19](1215 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 05:04](1215 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 06:17](1227 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:21, 05:01](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:41, 08:45](1218 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [11:12, 04:17] +PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:21](732 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 04:42] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:47, 13:44](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 09:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 03:57](1119 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:32](1051 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:22](987 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:07](1093 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:09](961 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:38](918 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:38, 04:54](1038 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:50](928 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 09:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:07](1194 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:44, 00:55](1111 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:13](1096 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 09:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:09](982 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 04:37] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:03](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:49](1100 MB) +PASS -- TEST 'conus13km_debug_intel' [16:53, 14:55](1243 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:49, 15:27](942 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:24](1160 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 15:17](1300 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:39] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:56](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 11:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:18, 04:59](722 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:00](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:20, 06:57](810 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:16, 13:49](858 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:28, 15:36](877 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:57, 05:30](493 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:18, 06:40](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:40](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 07:14](481 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:45](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:30](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:04](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:11](403 MB) +PASS -- TEST 'gnv1_nested_intel' [06:32, 03:59](1742 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:12, 04:57] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:50, 13:07](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:12, 11:01] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:01, 08:51](671 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:05, 08:58](743 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:24] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:33, 06:30](725 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 10:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 06:32](815 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:14, 06:39](801 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:09](1219 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:24] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:42](1158 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:39](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:32](1046 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:38](1033 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:37](1040 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:41](1184 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:41](1176 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:38](1047 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:22, 06:43](1065 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:17, 06:27](1044 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:40](1156 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:50](2515 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:57](2529 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 06:25] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:46](1161 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 01:12] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:45](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:24, 00:31](326 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:36] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:58, 03:40](1986 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:20] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:53, 03:38](1952 MB) + +PASS -- COMPILE 'atml_intel' [12:16, 10:50] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:59, 04:17](1865 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:58, 04:19](1864 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 02:20](1084 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 05:44] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:57, 05:45](1888 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:19] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:47, 01:51](1916 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 10:22] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:55, 04:08](3196 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:53, 04:54](3111 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:43, 04:58](3114 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:31] +PASS -- TEST 'control_c48_gnu' [11:39, 09:12](1510 MB) +PASS -- TEST 'control_stochy_gnu' [06:22, 03:23](492 MB) +PASS -- TEST 'control_ras_gnu' [07:22, 04:50](505 MB) +PASS -- TEST 'control_p8_gnu' [08:53, 05:06](1446 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 04:59](1455 MB) +PASS -- TEST 'control_flake_gnu' [13:26, 10:19](540 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:11] +PASS -- TEST 'rap_control_gnu' [13:31, 10:42](812 MB) +PASS -- TEST 'rap_decomp_gnu' [13:30, 11:00](816 MB) +PASS -- TEST 'rap_2threads_gnu' [12:36, 09:53](920 MB) +PASS -- TEST 'rap_restart_gnu' [07:43, 05:35](578 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 10:50](817 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:12](811 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:47, 08:01](580 MB) +PASS -- TEST 'hrrr_control_gnu' [08:31, 05:35](815 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:37, 05:34](832 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:35, 04:59](914 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:34](809 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 02:53](568 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 02:51](654 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:43, 10:35](814 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:33] +PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:40](1273 MB) +PASS -- TEST 'regional_debug_gnu' [12:37, 10:58](755 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:43](827 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:33](822 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:37](826 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:21, 02:37](830 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:52](908 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 04:07](818 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:39](823 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:36](818 MB) +PASS -- TEST 'control_ras_debug_gnu' [04:21, 01:36](461 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:21, 01:45](452 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:32](1441 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:37](823 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:22, 02:51](827 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:25](828 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:25] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:31, 09:31](709 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:32, 05:01](709 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:40, 08:37](753 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:29, 04:28](745 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:29, 05:05](702 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:38, 07:02](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:27, 02:32](537 MB) +PASS -- TEST 'conus13km_control_gnu' [05:53, 03:10](874 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:34](882 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:49](571 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:30] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:40, 05:46](731 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:38] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:23, 02:34](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:22, 02:31](712 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:50, 06:57](895 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:43, 07:05](585 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:46](898 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:43, 07:06](962 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 06:36] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:22, 02:43](737 MB) + +PASS -- COMPILE 's2swa_gnu' [18:14, 16:30] + +PASS -- COMPILE 's2s_gnu' [17:14, 16:03] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:06, 10:57](1543 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:11] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:14, 16:10] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:59, 23:19](1460 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 02:58] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:14, 15:26] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:01](695 MB) SYNOPSIS: -Starting Date/Time: 20240905 16:15:04 -Ending Date/Time: 20240905 18:13:40 -Total Time: 01h:59m:34s +Starting Date/Time: 20240910 03:30:29 +Ending Date/Time: 20240910 05:22:15 +Total Time: 01h:52m:07s Compiles Completed: 57/57 -Tests Completed: 243/243 +Tests Completed: 240/243 +Failed Tests: +* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2363/ufs-weather-model/tests/logs/log_hera/run_cpld_restart_gfsv17_intel.log +* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2363/ufs-weather-model/tests/logs/log_hera/run_cpld_restart_bmark_p8_intel.log +* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2363/ufs-weather-model/tests/logs/log_hera/run_cpld_restart_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +94d3c1110e119e311d76266bdc79a376f12d856e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1118900 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:05, 17:33](1972 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:23, 08:22](1274 MB) + +PASS -- COMPILE 's2swa_intel' [15:12, 13:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_bmark_p8_intel' [17:56, 08:53](4348 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:49, 05:41](4391 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:08, 17:40](2043 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:13, 08:21](1272 MB) + +SYNOPSIS: +Starting Date/Time: 20240911 20:51:33 +Ending Date/Time: 20240911 21:43:55 +Total Time: 00h:52m:32s +Compiles Completed: 3/3 +Tests Completed: 6/6 NOTES: A file 'test_changes.list' was generated but is empty. From 0ada1565625de2db2c9a41a044a14577648e4991 Mon Sep 17 00:00:00 2001 From: FernandoAndrade-NOAA Date: Wed, 11 Sep 2024 18:54:50 -0400 Subject: [PATCH 19/27] aadd gaea RT log passed --- tests/logs/RegressionTests_gaea.log | 627 ++++++++++++++++------------ 1 file changed, 353 insertions(+), 274 deletions(-) diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 8da1543c16..67162950d9 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a78129ced4e805131daeb5617e71ca20902410ca +c64ccb4c80d1f8c91039650319784bf96c81a676 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,287 +35,366 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_242863 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_86017 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:11, 20:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:09, 07:28](3203 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:13, 23:36] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [26:33, 14:13](1909 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:22, 14:37](1927 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:22, 07:02](1071 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:27, 14:56](1891 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:13, 23:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:55, 13:13](1907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:28] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 25:22](1939 MB) - -PASS -- COMPILE 's2swa_intel' [21:11, 19:16] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:07, 07:45](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:22, 07:53](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:47, 05:04](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:07, 07:59](3249 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:47, 05:07](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:08, 06:36](3467 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:00, 07:45](3224 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 06:47](3166 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:21, 08:00](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:35, 09:45](3445 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:40, 06:32](3605 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:56, 10:18](4205 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:59, 06:22](4358 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:05, 07:50](3212 MB) - -PASS -- COMPILE 's2sw_intel' [21:11, 19:29] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:13, 04:54](1931 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:19, 05:04](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:13, 15:36] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:30, 09:50](3281 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:11, 13:51] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:50, 06:00](1948 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:11, 17:37] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:40, 05:19](1992 MB) - -PASS -- COMPILE 's2s_intel' [19:11, 17:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:15, 06:30](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:13, 01:57](2882 MB) -PASS -- TEST 'cpld_restart_c48_intel' [14:23, 01:11](2292 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:15, 20:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:42, 08:06](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:19] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:29, 15:14](1929 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:21, 07:50](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:23, 17:01](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 13:20] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:25, 28:14](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:10, 14:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:47, 03:58](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:29, 03:37](1559 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:24, 03:42](1570 MB) -PASS -- TEST 'control_latlon_intel' [12:18, 03:11](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:23, 03:40](1568 MB) -PASS -- TEST 'control_c48_intel' [15:35, 06:31](1566 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:20, 05:43](699 MB) -PASS -- TEST 'control_c192_intel' [19:34, 10:22](1666 MB) -PASS -- TEST 'control_c384_intel' [28:49, 18:40](1938 MB) -PASS -- TEST 'control_c384gdas_intel' [24:30, 14:25](1153 MB) -PASS -- TEST 'control_stochy_intel' [05:49, 02:17](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:30, 01:20](426 MB) -PASS -- TEST 'control_lndp_intel' [07:50, 02:11](619 MB) -PASS -- TEST 'control_iovr4_intel' [09:56, 03:03](618 MB) -PASS -- TEST 'control_iovr5_intel' [09:52, 02:46](618 MB) -PASS -- TEST 'control_p8_intel' [12:41, 03:18](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [14:00, 03:43](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:44, 03:16](1854 MB) -PASS -- TEST 'control_restart_p8_intel' [06:04, 02:05](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:45, 03:37](1853 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:59, 02:03](1006 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:45, 03:25](1854 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:00, 02:53](1929 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:48, 05:37](1861 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:08, 04:22](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:15, 03:46](1861 MB) -PASS -- TEST 'merra2_thompson_intel' [08:05, 03:47](1853 MB) -PASS -- TEST 'regional_control_intel' [06:37, 04:39](849 MB) -PASS -- TEST 'regional_restart_intel' [06:41, 02:34](854 MB) -PASS -- TEST 'regional_decomp_intel' [08:35, 04:48](852 MB) -PASS -- TEST 'regional_2threads_intel' [06:35, 02:46](992 MB) -PASS -- TEST 'regional_noquilt_intel' [06:47, 04:28](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 04:37](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 04:51](851 MB) -PASS -- TEST 'regional_wofs_intel' [08:39, 06:07](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [16:10, 13:55] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:05, 07:11](1003 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:08, 03:52](1147 MB) -PASS -- TEST 'rap_decomp_intel' [11:56, 07:29](1004 MB) -PASS -- TEST 'rap_2threads_intel' [10:08, 06:08](1084 MB) -PASS -- TEST 'rap_restart_intel' [05:54, 03:29](871 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:56, 07:12](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:59, 07:09](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:04, 04:53](871 MB) -PASS -- TEST 'hrrr_control_intel' [05:56, 03:50](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 03:55](997 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:01, 03:03](1074 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:33, 01:55](827 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:56, 06:48](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 08:14](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 07:58](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 13:02] -PASS -- TEST 'control_csawmg_intel' [09:38, 06:37](958 MB) -PASS -- TEST 'control_ras_intel' [05:25, 03:18](653 MB) - -PASS -- COMPILE 'wam_intel' [15:11, 13:29] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:03, 12:12](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:17, 13:14] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:04, 03:13](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [06:39, 04:41](846 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:12, 14:35] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:49, 03:07](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 03:05](1596 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:19](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:31, 03:00](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:17](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [04:29, 02:57](804 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 02:52](1659 MB) -PASS -- TEST 'control_debug_p8_intel' [05:40, 03:09](1883 MB) -PASS -- TEST 'regional_debug_intel' [18:34, 16:52](899 MB) -PASS -- TEST 'rap_control_debug_intel' [06:30, 04:56](1175 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:30, 05:05](1172 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 04:58](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:29, 05:06](1179 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:59](1176 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:21](1260 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:04](1175 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:05](1176 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:32, 05:07](1179 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:33, 05:11](1176 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:52](1177 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:09](1175 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:31, 07:49](1174 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:31, 05:06](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:46](1182 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 04:58](1178 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 08:21](1181 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:14, 10:23] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:57, 13:36](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 12:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:04, 03:30](1014 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:59, 06:03](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:57, 03:32](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:56, 05:12](935 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:00, 02:40](926 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:53, 03:32](878 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:54, 04:33](776 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:34, 01:46](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 12:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:59, 02:29](1084 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:56, 00:55](1065 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:57, 01:32](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:01, 04:27](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 10:19] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:30, 05:04](1052 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:30, 04:50](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [18:12, 14:24](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:08, 14:21](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:00, 08:24](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:01, 14:34](1198 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:13, 10:20] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:29, 05:08](1078 MB) - -PASS -- COMPILE 'hafsw_intel' [19:11, 17:03] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:11, 04:49](690 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 03:55](1033 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:28, 07:25](725 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:16, 11:22](759 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:24, 12:28](778 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:12, 05:05](459 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:30, 06:12](479 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:11, 02:26](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:37, 06:51](440 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:55, 03:34](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:09, 03:15](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:05, 04:03](557 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:34, 01:15](396 MB) -PASS -- TEST 'gnv1_nested_intel' [12:58, 05:05](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:12, 12:06] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:26, 12:36](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:11, 16:22] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:10, 07:05](601 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:12, 07:16](779 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:13, 16:50] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:34, 05:24](776 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:17, 15:23] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:16, 05:51](719 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:16, 06:06](703 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:12, 20:08](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:26] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:28, 02:33](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 02:24](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 02:28](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:32](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:27, 02:34](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:26, 02:33](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:26, 02:25](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:02, 06:04](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:01, 05:53](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:33](751 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:34](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:31](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 08:17] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:27, 05:24](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 12:35] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 02:35](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:27] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:50, 01:35](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:43, 01:08](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:42, 00:48](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 14:19] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 04:01](1917 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:15, 04:01](1897 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 13:48] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:48, 06:48](1880 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:39, 07:01](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:35](1036 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:11, 10:23] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:29, 06:23](1919 MB) - -PASS -- COMPILE 'atmw_intel' [15:13, 13:52] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:04, 02:10](1888 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 13:07] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:10, 06:03](3121 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:07, 07:09](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:06, 06:39](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:14, 09:44] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:19, 18:23](4449 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:13, 18:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:00, 08:01](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:23, 14:11](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 14:30](1934 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:23, 15:06](1890 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:47, 13:52](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:11, 12:52] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:22, 25:57](1940 MB) + +PASS -- COMPILE 's2swa_intel' [19:13, 17:52] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:01, 09:50](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:58, 09:58](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [22:26, 06:21](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:57, 10:00](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [19:26, 05:58](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:51, 08:19](3470 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:53, 09:45](3224 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:52, 08:31](3171 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:02, 09:51](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:35, 09:42](3446 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:08, 06:28](3605 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:07, 09:15](4210 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:52, 07:45](3213 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:49] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:19, 06:02](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:19, 08:29](1995 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:11, 12:22] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:46, 14:15](3282 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:11, 12:27] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:20, 09:04](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:01] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 05:12](1991 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 15:24] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:06, 05:30](2874 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:05, 01:55](2882 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:06, 01:09](2293 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:11, 19:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 09:47](3225 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 21:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:45, 15:27](1924 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [09:58, 17:43](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:11, 12:34] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:15, 27:06](1949 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:44, 03:55](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [14:29, 03:48](1562 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:21, 03:53](1575 MB) +PASS -- TEST 'control_latlon_intel' [15:18, 03:37](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:31, 03:40](1565 MB) +PASS -- TEST 'control_c48_intel' [21:38, 09:50](1578 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:10, 05:45](699 MB) +PASS -- TEST 'control_c192_intel' [23:33, 11:22](1686 MB) +PASS -- TEST 'control_c384_intel' [39:38, 23:21](1958 MB) +PASS -- TEST 'control_c384gdas_intel' [30:25, 14:25](1154 MB) +PASS -- TEST 'control_stochy_intel' [12:44, 02:04](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:28, 01:00](426 MB) +PASS -- TEST 'control_lndp_intel' [12:44, 02:05](619 MB) +PASS -- TEST 'control_iovr4_intel' [12:45, 02:45](618 MB) +PASS -- TEST 'control_iovr5_intel' [11:47, 02:49](618 MB) +PASS -- TEST 'control_p8_intel' [17:40, 04:02](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:56, 03:23](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [17:13, 03:54](1860 MB) +PASS -- TEST 'control_restart_p8_intel' [07:02, 02:28](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [19:03, 03:58](1855 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:58, 02:44](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [20:02, 03:51](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [18:00, 03:13](1941 MB) +PASS -- TEST 'control_p8_lndp_intel' [20:49, 06:33](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:54, 04:31](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:09, 03:24](1860 MB) +PASS -- TEST 'merra2_thompson_intel' [09:07, 03:35](1867 MB) +PASS -- TEST 'regional_control_intel' [06:37, 04:40](850 MB) +PASS -- TEST 'regional_restart_intel' [06:34, 03:13](854 MB) +PASS -- TEST 'regional_decomp_intel' [09:34, 04:55](859 MB) +PASS -- TEST 'regional_2threads_intel' [08:35, 02:55](995 MB) +PASS -- TEST 'regional_noquilt_intel' [09:37, 04:34](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:41, 04:40](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:37, 04:38](852 MB) +PASS -- TEST 'regional_wofs_intel' [09:37, 06:17](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:17] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:01, 06:48](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:06, 03:48](1147 MB) +PASS -- TEST 'rap_decomp_intel' [10:58, 07:52](1004 MB) +PASS -- TEST 'rap_2threads_intel' [09:01, 06:43](1081 MB) +PASS -- TEST 'rap_restart_intel' [06:06, 03:38](872 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:45, 07:33](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:44, 07:37](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [51:00, 05:07](871 MB) +PASS -- TEST 'hrrr_control_intel' [07:03, 04:23](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:58, 03:53](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:00, 03:04](1070 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:08, 01:54](827 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:56, 06:47](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 08:29](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:32, 08:09](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [15:11, 13:33] +PASS -- TEST 'control_csawmg_intel' [10:43, 06:39](958 MB) +PASS -- TEST 'control_ras_intel' [06:25, 03:21](653 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:03, 12:02](1656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 12:58] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:50, 03:11](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [07:40, 04:33](829 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:11, 13:10] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:48, 02:40](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:43, 02:42](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:31, 03:07](794 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:55](793 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:20](1095 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:57](801 MB) +PASS -- TEST 'control_diag_debug_intel' [04:57, 02:55](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [05:40, 03:03](1891 MB) +PASS -- TEST 'regional_debug_intel' [19:34, 16:59](899 MB) +PASS -- TEST 'rap_control_debug_intel' [11:32, 04:59](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [14:29, 05:01](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [14:28, 05:11](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:31, 05:16](1176 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:30, 05:11](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [47:42, 05:16](1258 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [46:32, 05:07](1173 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [46:32, 05:09](1173 MB) +PASS -- TEST 'rap_lndp_debug_intel' [46:16, 05:07](1176 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [45:32, 05:02](1173 MB) +PASS -- TEST 'rap_noah_debug_intel' [45:37, 04:58](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [46:36, 05:08](1173 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [53:33, 08:04](1169 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [50:30, 05:02](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [51:36, 05:56](1179 MB) +PASS -- TEST 'rap_flake_debug_intel' [55:30, 05:06](1175 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [01:02, 08:27](1180 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:12, 09:24] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [09:14, 13:25](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:13, 03:30](1012 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [59:00, 05:50](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 03:20](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:03, 05:14](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:01, 02:44](927 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:56, 03:53](878 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [22:55, 04:26](775 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:34, 01:58](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:12, 12:37] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:20, 02:23](1084 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:54, 00:53](1065 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:56, 01:20](962 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:05, 04:31](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:13, 09:41] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 05:11](1052 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:37, 04:57](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [16:11, 14:32](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:06, 14:31](805 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [06:56, 08:00](1116 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:05, 14:27](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 09:41] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [34:29, 05:01](1077 MB) + +PASS -- COMPILE 'hafsw_intel' [18:12, 16:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [34:14, 04:37](690 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:42, 03:54](1034 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:28, 07:19](725 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [40:20, 11:32](761 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:27, 12:33](779 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:11, 05:00](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [32:27, 06:17](479 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [28:06, 02:30](366 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [33:26, 06:54](430 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [25:48, 03:32](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:00, 03:20](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [18:03, 04:01](555 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:38, 01:13](396 MB) +PASS -- TEST 'gnv1_nested_intel' [15:54, 05:03](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:11, 11:12] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:58, 12:21](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 15:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:07, 07:12](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:18, 07:09](779 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:15, 16:13] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:21, 05:25](775 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 15:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:10, 05:55](719 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:07](705 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:16, 20:07](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:59] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:28, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:28, 01:34](741 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:27](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 02:26](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:27](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 02:33](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 02:34](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 02:25](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:03, 05:59](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:00, 05:59](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:30, 04:39](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:28, 04:41](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 07:54] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:24](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 12:22] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:32](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:12, 03:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:50, 01:42](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:46, 01:16](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:46, 00:51](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:15, 15:35] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:24, 04:03](1916 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:13, 13:54] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:18, 04:00](1904 MB) + +PASS -- COMPILE 'atml_intel' [17:12, 15:33] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:36, 07:06](1880 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:40, 07:11](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 03:33](1035 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:11, 12:18] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:31, 06:12](1919 MB) + +PASS -- COMPILE 'atmw_intel' [17:11, 15:54] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:02, 02:38](1888 MB) + +PASS -- COMPILE 'atmaero_intel' [16:11, 14:31] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:11, 06:37](3121 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:12, 06:35](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:04, 06:51](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:11, 10:28] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:29, 18:16](4484 MB) SYNOPSIS: -Starting Date/Time: 20240905 02:47:02 -Ending Date/Time: 20240905 04:36:54 -Total Time: 01h:50m:41s +Starting Date/Time: 20240909 23:36:06 +Ending Date/Time: 20240910 02:33:17 +Total Time: 02h:57m:58s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 182/185 +Failed Tests: +* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2363/ufs-weather-model/tests/logs/log_gaea/run_cpld_restart_gfsv17_intel.log +* TEST cpld_restart_bmark_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2363/ufs-weather-model/tests/logs/log_gaea/run_cpld_restart_bmark_p8_intel.log +* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2363/ufs-weather-model/tests/logs/log_gaea/run_cpld_restart_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +94d3c1110e119e311d76266bdc79a376f12d856e + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_183925 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [29:22, 13:46](1909 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:30, 07:08](1063 MB) + +PASS -- COMPILE 's2swa_intel' [20:11, 18:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_bmark_p8_intel' [31:34, 09:18](4206 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [10:57, 05:57](4364 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 20:55] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:18, 15:08](1925 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 07:21](1090 MB) + +SYNOPSIS: +Starting Date/Time: 20240911 17:40:18 +Ending Date/Time: 20240911 18:44:42 +Total Time: 01h:04m:43s +Compiles Completed: 3/3 +Tests Completed: 6/6 NOTES: A file 'test_changes.list' was generated but is empty. From 87fa93cf76f8a31f1b5ddb83efc461b056a7bee3 Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Thu, 12 Sep 2024 10:15:14 -0400 Subject: [PATCH 20/27] Update cpld_mpi_pdlib_p8 --- tests/tests/cpld_mpi_pdlib_p8 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index b39cf25fdf..ab941f5414 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -107,6 +107,8 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN +export DT_INNER=720 +export DT_ATMOS=720 export K_SPLIT=2 export N_SPLIT=5 From 533e855dac5381cf818b39179344afcacd8f9d47 Mon Sep 17 00:00:00 2001 From: dpsarmie Date: Thu, 12 Sep 2024 09:23:47 -0500 Subject: [PATCH 21/27] cpld_mpi_pdlib_p8 fix --- tests/tests/cpld_mpi_pdlib_p8 | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index ab941f5414..c3879bf706 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -109,13 +109,9 @@ export FV3_RUN=cpld_control_run.IN export DT_INNER=720 export DT_ATMOS=720 -export K_SPLIT=2 +export K_SPLIT=4 export N_SPLIT=5 # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. From 17749118ba0dfcca7c2cac513d497ea37521edc8 Mon Sep 17 00:00:00 2001 From: FernandoAndrade-NOAA Date: Thu, 12 Sep 2024 14:53:25 +0000 Subject: [PATCH 22/27] add jet RT log passed --- tests/logs/RegressionTests_jet.log | 559 ++++++++++++++++------------- 1 file changed, 316 insertions(+), 243 deletions(-) diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 889708db55..701553ee6c 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -8fb13929a4f74a9181c8d3f619893aaf6e507bc5 +51a07c1585abc6f5dea12812f8f72a50ba92183a Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,256 +35,329 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2076954 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1523996 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [50:35, 42:05] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:11, 07:06](2002 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:36, 48:30] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:08, 21:00](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [43:20, 22:25](2017 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [30:13, 09:48](1126 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:24, 24:03](1857 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:36, 47:44] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:51, 20:47](1881 MB) - -PASS -- COMPILE 's2swa_intel' [50:35, 42:08] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:11, 07:34](2060 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:25, 07:37](2057 MB) -PASS -- TEST 'cpld_restart_p8_intel' [24:25, 04:19](1716 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:11, 07:40](2074 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [24:26, 04:24](1734 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:11, 07:18](2318 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:11, 07:42](2059 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [20:11, 06:27](2003 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:17, 07:36](2060 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [20:10, 07:14](2041 MB) - -PASS -- COMPILE 's2sw_intel' [48:33, 40:54] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [21:07, 06:06](1907 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:21, 05:49](1973 MB) - -PASS -- COMPILE 's2swa_debug_intel' [21:15, 07:50] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [31:17, 10:30](2092 MB) - -PASS -- COMPILE 's2sw_debug_intel' [19:13, 07:43] ( 1448 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:01, 07:22](1945 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [48:18, 36:34] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [18:13, 05:53](1983 MB) - -PASS -- COMPILE 's2s_intel' [43:18, 37:05] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [24:04, 12:14](3016 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:53, 03:41](3014 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:57, 01:59](2461 MB) - -PASS -- COMPILE 's2swa_faster_intel' [39:24, 33:20] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [26:44, 07:12](2066 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [07:20, 47:03] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:28, 20:51](1911 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [38:25, 10:07](1132 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [48:07, 24:02](1888 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:13, 06:04] ( 1558 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:19, 33:03](1938 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [52:15, 37:48] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [42:33, 04:40](650 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [41:48, 04:03](1544 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:51, 04:25](1554 MB) -PASS -- TEST 'control_latlon_intel' [41:45, 04:06](1548 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:56, 04:10](1549 MB) -PASS -- TEST 'control_c48_intel' [50:00, 12:07](1701 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [48:45, 10:32](828 MB) -PASS -- TEST 'control_c192_intel' [52:14, 14:19](1667 MB) -PASS -- TEST 'control_c384_intel' [57:06, 18:09](1798 MB) -PASS -- TEST 'control_c384gdas_intel' [52:51, 13:31](1006 MB) -PASS -- TEST 'control_stochy_intel' [22:28, 02:08](610 MB) -PASS -- TEST 'control_stochy_restart_intel' [19:29, 01:16](434 MB) -PASS -- TEST 'control_lndp_intel' [40:32, 02:19](604 MB) -PASS -- TEST 'control_iovr4_intel' [18:30, 03:28](601 MB) -PASS -- TEST 'control_iovr5_intel' [23:31, 03:16](598 MB) -PASS -- TEST 'control_p8_intel' [42:06, 04:18](1841 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [23:05, 04:12](1833 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [22:55, 04:12](1841 MB) -PASS -- TEST 'control_restart_p8_intel' [30:50, 02:12](1061 MB) -PASS -- TEST 'control_noqr_p8_intel' [22:01, 04:06](1830 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [26:03, 02:16](1072 MB) -PASS -- TEST 'control_decomp_p8_intel' [24:55, 04:01](1829 MB) -PASS -- TEST 'control_2threads_p8_intel' [23:58, 03:42](1914 MB) -PASS -- TEST 'control_p8_lndp_intel' [42:51, 07:00](1836 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [47:05, 05:22](1890 MB) -PASS -- TEST 'control_p8_mynn_intel' [45:08, 04:06](1840 MB) -PASS -- TEST 'merra2_thompson_intel' [45:04, 04:31](1840 MB) -PASS -- TEST 'regional_control_intel' [33:47, 07:05](1012 MB) -PASS -- TEST 'regional_restart_intel' [20:37, 03:51](1009 MB) -PASS -- TEST 'regional_decomp_intel' [32:45, 07:29](1001 MB) -PASS -- TEST 'regional_2threads_intel' [29:44, 04:29](1008 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [32:51, 07:10](1006 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [30:40, 07:09](1004 MB) - -PASS -- COMPILE 'rrfs_intel' [48:19, 37:13] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [26:43, 10:15](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:08, 05:43](1178 MB) -PASS -- TEST 'rap_decomp_intel' [26:43, 10:46](992 MB) -PASS -- TEST 'rap_2threads_intel' [25:47, 09:49](1077 MB) -PASS -- TEST 'rap_restart_intel' [30:00, 05:19](993 MB) -PASS -- TEST 'rap_sfcdiff_intel' [25:47, 10:12](994 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [26:43, 10:49](990 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [31:47, 07:37](993 MB) -PASS -- TEST 'hrrr_control_intel' [20:50, 05:16](990 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [21:47, 05:28](985 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [20:50, 04:54](1048 MB) -PASS -- TEST 'hrrr_control_restart_intel' [26:36, 02:52](922 MB) -PASS -- TEST 'rrfs_v1beta_intel' [25:55, 10:10](991 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [28:34, 12:36](1945 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:34, 12:13](1943 MB) - -PASS -- COMPILE 'csawmg_intel' [45:19, 34:10] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [26:50, 08:22](961 MB) -PASS -- TEST 'control_ras_intel' [23:35, 04:35](663 MB) - -PASS -- COMPILE 'wam_intel' [51:15, 34:33] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [39:55, 14:21](1634 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [55:18, 36:18] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [25:56, 03:37](1834 MB) -PASS -- TEST 'regional_control_faster_intel' [27:45, 06:37](1002 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [24:14, 08:28] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:47, 03:21](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [26:50, 03:22](1575 MB) -PASS -- TEST 'control_stochy_debug_intel' [31:24, 03:45](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [31:25, 03:26](779 MB) -PASS -- TEST 'control_csawmg_debug_intel' [32:40, 05:26](1094 MB) -PASS -- TEST 'control_ras_debug_intel' [28:29, 03:26](791 MB) -PASS -- TEST 'control_diag_debug_intel' [28:48, 03:22](1635 MB) -PASS -- TEST 'control_debug_p8_intel' [28:46, 03:44](1876 MB) -PASS -- TEST 'regional_debug_intel' [43:46, 22:06](1037 MB) -PASS -- TEST 'rap_control_debug_intel' [26:32, 06:08](1162 MB) -PASS -- TEST 'hrrr_control_debug_intel' [24:30, 05:58](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [23:26, 06:05](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [22:27, 06:08](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [21:26, 06:07](1169 MB) -PASS -- TEST 'rap_diag_debug_intel' [22:36, 06:24](1250 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:29, 06:15](1167 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:29, 06:15](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:25, 06:09](1171 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:27, 06:05](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [16:26, 06:14](1173 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [17:28, 06:08](1168 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:28, 10:01](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [16:26, 06:05](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [17:31, 07:28](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [16:26, 06:09](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:47, 10:41](1171 MB) - -PASS -- COMPILE 'wam_debug_intel' [25:12, 05:12] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [29:57, 16:35](1662 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [01:19, 30:43] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:04, 05:13](1045 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:41, 08:11](908 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [17:36, 04:18](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:41, 07:51](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:45, 03:59](911 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [17:40, 04:34](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:48, 06:19](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:30, 02:29](853 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [59:22, 31:46] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [29:53, 02:54](1103 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:54, 01:19](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:52, 01:36](1017 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:18, 31:11] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [32:55, 05:34](915 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [30:20, 05:19] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:32, 06:03](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [17:24, 05:55](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [29:03, 18:51](1160 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [35:45, 18:43](883 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [27:42, 10:44](1062 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [48:47, 18:53](1225 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [29:14, 05:08] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [35:30, 06:17](1089 MB) - -PASS -- COMPILE 'hafsw_intel' [50:19, 39:17] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:14, 06:44](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:12](1070 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:34, 09:05](758 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 16:05](915 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:37, 18:19](793 MB) -PASS -- TEST 'gnv1_nested_intel' [09:45, 06:21](1679 MB) - -PASS -- COMPILE 'hafs_all_intel' [46:16, 35:47] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:24, 08:31](761 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:27, 08:36](743 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:23] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [18:26, 03:40](1075 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:24, 02:14](1030 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [18:25, 03:31](933 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [18:26, 03:37](934 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [18:26, 03:35](932 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [18:25, 03:40](1068 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:26, 03:41](1081 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [18:26, 03:34](936 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [23:22, 07:46](896 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [23:18, 07:40](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [18:22, 03:42](1071 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [19:26, 05:03](2371 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [20:25, 05:14](2374 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [26:28, 08:12](1025 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [35:18, 08:30] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:35](1075 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [19:13, 01:55] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:21](239 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 01:06](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:26, 00:49](261 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [51:14, 35:59] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [23:20, 04:44](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 34:55] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:02, 04:32](1903 MB) - -PASS -- COMPILE 'atml_intel' [39:14, 37:05] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [26:10, 05:50](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [26:12, 05:52](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [21:55, 03:15](1075 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:18] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:18](1895 MB) - -PASS -- COMPILE 'atmw_intel' [38:16, 37:05] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:55, 02:22](1862 MB) - -PASS -- COMPILE 'atmaero_intel' [37:15, 35:09] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [22:08, 05:11](1935 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [23:05, 06:14](1721 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:53, 06:21](1730 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:49, 42:15] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:59, 08:19](2026 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:51, 49:18] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:12, 20:44](1888 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:47, 22:20](2020 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:56, 24:07](1865 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:51, 49:16] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:53, 20:24](1885 MB) + +PASS -- COMPILE 's2swa_intel' [17:49, 42:17] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [55:56, 09:55](2072 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [56:07, 09:58](2078 MB) +PASS -- TEST 'cpld_restart_p8_intel' [30:24, 05:37](1725 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [55:56, 09:55](2090 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [30:24, 05:40](1741 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [55:52, 09:25](2326 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [55:53, 10:06](2068 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [55:07, 08:23](2017 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [56:10, 09:51](2066 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [53:01, 07:09](2046 MB) + +PASS -- COMPILE 's2sw_intel' [15:48, 40:04] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [56:03, 07:35](1911 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:07, 09:36](1979 MB) + +PASS -- COMPILE 's2swa_debug_intel' [53:39, 05:38] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [45:25, 16:39](2097 MB) + +PASS -- COMPILE 's2sw_debug_intel' [03:53, 06:01] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [27:56, 11:24](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [42:01, 36:30] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:45, 05:40](1980 MB) + +PASS -- COMPILE 's2s_intel' [35:00, 37:05] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [48:15, 10:28](3012 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [41:16, 03:35](3020 MB) +PASS -- TEST 'cpld_restart_c48_intel' [35:55, 01:57](2462 MB) + +PASS -- COMPILE 's2swa_faster_intel' [31:12, 32:55] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [51:52, 09:23](2074 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:01, 49:19] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:00, 21:28](1908 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:20, 24:01](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [21:36, 06:04] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:08, 33:20](1941 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:33, 37:20] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [37:42, 04:21](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [23:38, 04:14](1537 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [39:17, 04:22](1538 MB) +PASS -- TEST 'control_latlon_intel' [37:09, 04:12](1543 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:45, 04:22](1540 MB) +PASS -- TEST 'control_c48_intel' [54:24, 18:07](1700 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [46:52, 10:12](822 MB) +PASS -- TEST 'control_c192_intel' [34:48, 15:54](1688 MB) +PASS -- TEST 'control_c384_intel' [42:44, 23:01](1816 MB) +PASS -- TEST 'control_c384gdas_intel' [52:46, 13:46](994 MB) +PASS -- TEST 'control_stochy_intel' [34:42, 02:09](609 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:43, 01:46](437 MB) +PASS -- TEST 'control_lndp_intel' [34:42, 02:01](605 MB) +PASS -- TEST 'control_iovr4_intel' [35:44, 03:16](602 MB) +PASS -- TEST 'control_iovr5_intel' [36:44, 03:18](597 MB) +PASS -- TEST 'control_p8_intel' [23:59, 04:50](1821 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [41:56, 04:22](1838 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:24, 04:39](1829 MB) +PASS -- TEST 'control_restart_p8_intel' [16:45, 03:05](1061 MB) +PASS -- TEST 'control_noqr_p8_intel' [23:58, 04:41](1825 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [15:48, 03:02](1077 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:25, 04:49](1828 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:01, 04:29](1907 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:14, 08:38](1829 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [24:53, 05:18](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:04, 04:01](1847 MB) +PASS -- TEST 'merra2_thompson_intel' [37:23, 04:20](1841 MB) +PASS -- TEST 'regional_control_intel' [43:12, 07:04](1011 MB) +PASS -- TEST 'regional_restart_intel' [57:52, 04:17](1012 MB) +PASS -- TEST 'regional_decomp_intel' [07:43, 07:28](1003 MB) +PASS -- TEST 'regional_2threads_intel' [58:38, 04:19](999 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [38:26, 07:11](1004 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [37:28, 07:10](1015 MB) + +PASS -- COMPILE 'rrfs_intel' [14:33, 36:40] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [12:01, 10:33](998 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:11, 06:05](1174 MB) +PASS -- TEST 'rap_decomp_intel' [11:51, 11:18](989 MB) +PASS -- TEST 'rap_2threads_intel' [10:03, 10:06](1074 MB) +PASS -- TEST 'rap_restart_intel' [17:49, 05:25](993 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:46, 10:32](998 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:58, 11:06](990 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [20:47, 07:38](1004 MB) +PASS -- TEST 'hrrr_control_intel' [01:59, 05:41](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [55:51, 05:46](979 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [47:58, 05:13](1053 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:29, 02:53](919 MB) +PASS -- TEST 'rrfs_v1beta_intel' [23:54, 10:20](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [26:24, 12:55](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:21, 12:29](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [15:23, 34:07] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [43:43, 08:05](965 MB) +PASS -- TEST 'control_ras_intel' [07:30, 04:19](669 MB) + +PASS -- COMPILE 'wam_intel' [06:06, 34:46] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [16:41, 14:40](1627 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:03, 36:22] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [58:41, 04:03](1833 MB) +PASS -- TEST 'regional_control_faster_intel' [39:30, 07:02](997 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [44:01, 08:25] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:28, 03:12](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [30:27, 03:12](1578 MB) +PASS -- TEST 'control_stochy_debug_intel' [31:48, 04:12](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [30:44, 03:53](785 MB) +PASS -- TEST 'control_csawmg_debug_intel' [30:56, 05:54](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [28:44, 04:01](788 MB) +PASS -- TEST 'control_diag_debug_intel' [28:03, 03:51](1647 MB) +PASS -- TEST 'control_debug_p8_intel' [26:02, 03:42](1859 MB) +PASS -- TEST 'regional_debug_intel' [23:58, 22:07](1028 MB) +PASS -- TEST 'rap_control_debug_intel' [14:31, 06:17](1170 MB) +PASS -- TEST 'hrrr_control_debug_intel' [14:33, 06:09](1160 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:28, 06:08](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:24, 06:14](1165 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:28, 06:17](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [13:34, 06:32](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:26, 06:21](1173 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:24, 06:24](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [13:27, 06:19](1174 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:23, 06:21](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:24, 06:08](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:25, 06:15](1175 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:29, 10:08](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:25, 06:13](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [13:30, 07:23](1146 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:28, 06:03](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:51, 10:51](1172 MB) + +PASS -- COMPILE 'wam_debug_intel' [42:00, 05:11] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [29:58, 16:47](1649 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [25:42, 24:54] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [18:06, 05:17](1043 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [20:42, 08:24](904 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:44, 04:30](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:45, 08:02](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:40, 04:13](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:36, 04:43](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:46, 06:06](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:30, 02:17](851 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:11, 32:21] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [12:59, 02:44](1102 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:46, 01:32](1043 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:46, 01:48](1020 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [26:16, 31:43] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:49, 05:24](915 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [59:08, 05:48] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [14:28, 06:13](1052 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:29, 06:05](1046 MB) +PASS -- TEST 'conus13km_debug_intel' [25:03, 18:54](1159 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:51, 18:56](863 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:41, 10:58](1103 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:41, 18:54](1231 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [33:03, 05:41] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:27, 06:21](1082 MB) + +PASS -- COMPILE 'hafsw_intel' [39:30, 40:16] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:18, 06:43](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:35, 06:16](1061 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [22:34, 09:10](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [29:30, 16:09](792 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:41, 17:57](806 MB) +PASS -- TEST 'gnv1_nested_intel' [19:48, 06:41](1681 MB) + +PASS -- COMPILE 'hafs_all_intel' [42:17, 35:47] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:14, 08:26](759 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:17, 08:32](738 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:20] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [10:25, 03:33](1076 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:27, 02:11](1033 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:26, 03:29](940 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:25, 03:33](931 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:25, 03:32](935 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [09:25, 03:36](1075 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:25, 03:35](1093 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:25, 03:31](931 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:18, 07:46](906 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:19, 07:37](850 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [10:23, 03:35](1088 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:02](2359 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 05:06](2375 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:14](1025 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:15] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:22, 03:53](1074 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [12:11, 01:48] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:36, 01:23](237 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [10:28, 01:14](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:31, 00:38](263 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [45:20, 35:50] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [32:35, 04:53](1911 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [48:19, 35:33] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [21:22, 04:38](1893 MB) + +PASS -- COMPILE 'atml_intel' [49:19, 36:41] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [21:23, 05:36](1865 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [20:24, 05:34](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [38:13, 03:13](1063 MB) + +PASS -- COMPILE 'atml_debug_intel' [16:12, 06:36] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:15, 07:20](1886 MB) + +PASS -- COMPILE 'atmw_intel' [42:16, 36:12] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:11, 02:18](1862 MB) + +PASS -- COMPILE 'atmaero_intel' [20:32, 35:23] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:11, 05:15](1920 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:07, 06:19](1719 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:54, 06:20](1729 MB) SYNOPSIS: -Starting Date/Time: 20240905 16:13:47 -Ending Date/Time: 20240906 00:08:01 -Total Time: 07h:54m:39s +Starting Date/Time: 20240910 17:19:14 +Ending Date/Time: 20240911 20:44:48 +Total Time: 03h:26m:11s Compiles Completed: 36/36 -Tests Completed: 164/164 +Tests Completed: 162/164 +Failed Tests: +* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2363/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_gfsv17_intel.log +* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2363/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +0ada1565625de2db2c9a41a044a14577648e4991 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1358374 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [57:32, 50:44] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [03:21, 20:46](1892 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [48:00, 11:21](1126 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [54:32, 46:52] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [05:37, 20:55](1897 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [48:46, 10:35](1142 MB) + +SYNOPSIS: +Starting Date/Time: 20240912 06:38:11 +Ending Date/Time: 20240912 12:28:22 +Total Time: 05h:50m:38s +Compiles Completed: 2/2 +Tests Completed: 4/4 NOTES: A file 'test_changes.list' was generated but is empty. From 19080c0507308dd1e89738ddac3fb165acfdc2dd Mon Sep 17 00:00:00 2001 From: zach1221 Date: Thu, 12 Sep 2024 12:52:54 -0500 Subject: [PATCH 23/27] add hercules RT logs: passed --- tests/logs/RegressionTests_hercules.log | 801 +++++++++++++----------- 1 file changed, 434 insertions(+), 367 deletions(-) diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 5b0445a2c8..e28a662a50 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: -4dee8d49d4f976f5af7b0fe91cab060c7814eac0 +94d3c1110e119e311d76266bdc79a376f12d856e Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,377 +35,444 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1802002 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_573739 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [11:01, 11:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 07:39](2123 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 17:06] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:11, 13:26](2002 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:01, 14:08](2318 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:26, 06:34](1303 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:48, 15:02](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:59, 15:59] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:34, 13:11](1991 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 05:18] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:58, 22:02](1976 MB) - -PASS -- COMPILE 's2swa_intel' [11:00, 11:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:25, 07:37](2184 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:31, 07:51](2178 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:02, 04:22](1953 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:27, 07:50](2198 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 04:24](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:23, 08:52](2545 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:21, 07:42](2162 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:13, 06:40](2083 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:12, 07:38](2180 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:55, 15:31](2974 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:05, 05:54](2921 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:43, 09:47](3809 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:11, 06:09](3632 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:41, 05:09](2154 MB) - -PASS -- COMPILE 's2sw_intel' [10:30, 10:29] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 07:15](2024 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:57, 04:11](2103 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:51, 05:51] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:16, 08:27](2212 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:33, 05:33] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:38, 05:59](2039 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:57, 09:57] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:44, 04:02](2085 MB) - -PASS -- COMPILE 's2s_intel' [09:53, 09:53] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:23, 06:56](3064 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:28, 02:00](3015 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:39, 01:09](2493 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:57, 11:57] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:16, 07:32](2178 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:07, 16:07] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:38, 13:52](2049 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:43, 06:48](1393 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:23, 15:58](1967 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 04:16] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:06, 22:35](2013 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:44, 11:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:50, 03:38](724 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:30, 03:07](1616 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:39, 03:14](1617 MB) -PASS -- TEST 'control_latlon_intel' [03:38, 03:03](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:42, 03:14](1613 MB) -PASS -- TEST 'control_c48_intel' [07:30, 07:03](1699 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:11, 05:59](847 MB) -PASS -- TEST 'control_c192_intel' [12:37, 12:10](1764 MB) -PASS -- TEST 'control_c384_intel' [13:56, 12:46](1998 MB) -PASS -- TEST 'control_c384gdas_intel' [11:30, 09:55](1507 MB) -PASS -- TEST 'control_stochy_intel' [01:52, 01:46](675 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:21, 01:09](547 MB) -PASS -- TEST 'control_lndp_intel' [01:56, 01:46](665 MB) -PASS -- TEST 'control_iovr4_intel' [03:02, 02:46](667 MB) -PASS -- TEST 'control_iovr5_intel' [02:46, 02:37](668 MB) -PASS -- TEST 'control_p8_intel' [03:56, 03:18](1912 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 03:17](1894 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 03:13](1910 MB) -PASS -- TEST 'control_restart_p8_intel' [02:21, 01:51](1167 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:52, 03:13](1895 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:16, 01:45](1220 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:02, 03:23](1894 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:36, 02:58](1988 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:58, 05:39](1898 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:59, 04:24](1974 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:22, 02:42](1904 MB) -PASS -- TEST 'merra2_thompson_intel' [04:30, 03:47](1915 MB) -PASS -- TEST 'regional_control_intel' [05:09, 04:50](1196 MB) -PASS -- TEST 'regional_restart_intel' [03:06, 02:53](1170 MB) -PASS -- TEST 'regional_decomp_intel' [05:40, 05:26](1178 MB) -PASS -- TEST 'regional_2threads_intel' [03:30, 03:15](1156 MB) -PASS -- TEST 'regional_noquilt_intel' [04:55, 04:41](1520 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:06, 04:48](1198 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:09, 04:55](1198 MB) -PASS -- TEST 'regional_wofs_intel' [06:11, 05:52](2100 MB) - -PASS -- COMPILE 'rrfs_intel' [08:32, 08:32] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:20, 06:43](1213 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:07, 03:27](1344 MB) -PASS -- TEST 'rap_decomp_intel' [07:27, 06:53](1116 MB) -PASS -- TEST 'rap_2threads_intel' [06:52, 06:17](1358 MB) -PASS -- TEST 'rap_restart_intel' [04:16, 03:30](1136 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:19, 06:43](1223 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:33, 06:59](1157 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:50, 05:03](1215 MB) -PASS -- TEST 'hrrr_control_intel' [04:11, 03:29](1068 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:14, 03:39](1042 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:49, 04:04](1106 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:13, 01:52](1022 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:14, 06:29](1215 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:59, 07:42](2005 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:40, 07:31](2180 MB) - -PASS -- COMPILE 'csawmg_intel' [08:16, 08:16] -PASS -- TEST 'control_csawmg_intel' [05:53, 05:36](1046 MB) -PASS -- TEST 'control_ras_intel' [03:06, 02:56](854 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:03, 04:03] -PASS -- TEST 'control_csawmg_gnu' [07:56, 07:34](1070 MB) - -PASS -- COMPILE 'wam_intel' [08:52, 08:51] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:32, 10:14](1669 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:59, 08:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:02, 02:25](1885 MB) -PASS -- TEST 'regional_control_faster_intel' [04:31, 04:16](1190 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:26, 06:26] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:52, 02:33](1629 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:53, 02:31](1639 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:00, 02:49](844 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:42, 02:31](850 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:12, 04:59](1155 MB) -PASS -- TEST 'control_ras_debug_intel' [02:42, 02:35](856 MB) -PASS -- TEST 'control_diag_debug_intel' [02:54, 02:36](1697 MB) -PASS -- TEST 'control_debug_p8_intel' [03:50, 03:25](1942 MB) -PASS -- TEST 'regional_debug_intel' [16:57, 16:36](1172 MB) -PASS -- TEST 'rap_control_debug_intel' [04:51, 04:39](1239 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:50, 04:36](1228 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:07, 04:53](1229 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:45, 04:35](1232 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:44, 04:37](1236 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:20, 05:01](1318 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:53, 04:46](1226 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:54, 04:48](1228 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:56, 04:36](1240 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:49, 04:40](1228 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:05, 04:54](1229 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:56, 04:48](1231 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 08:24](1245 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:54, 04:46](1231 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:04, 05:57](1237 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:08, 04:49](1238 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:55, 08:37](1246 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:23, 04:23] -PASS -- TEST 'control_csawmg_debug_gnu' [03:08, 02:47](1048 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:05, 04:04] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:15, 08:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:40, 04:00](1217 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 07:17](1189 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 03:32](1036 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 07:08](1284 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:06, 03:18](1037 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:53](992 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:24, 05:47](1127 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:58](996 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:28, 08:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:29, 02:03](1299 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:18, 00:56](1190 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 01:13](1144 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:28, 10:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:11, 03:46](1085 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:42, 03:40] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:04, 04:57](1117 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 05:11](1115 MB) -PASS -- TEST 'conus13km_debug_intel' [16:16, 15:50](1362 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:25, 16:00](1008 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:04, 12:10](1256 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:56](1410 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:56, 03:55] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:12, 04:35](1159 MB) - -PASS -- COMPILE 'hafsw_intel' [09:51, 09:51] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:50, 05:42](862 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:47, 05:13](1252 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:33, 06:25](921 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 14:10](962 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:59, 15:53](996 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:05, 05:22](591 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:55, 06:52](607 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:03, 02:35](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:57, 07:45](547 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:41, 04:08](608 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 03:36](603 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 05:19](666 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:40, 01:24](446 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:25, 04:25] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:28, 12:41](643 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:40, 09:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:25, 16:25](724 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:35, 16:40](794 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:53, 10:53] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:20, 10:03](822 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:01, 10:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:07, 07:09](917 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:14, 06:15](895 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 17:08](1332 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:05, 06:05] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:20, 02:14](1155 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:21, 01:17](1096 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:10](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:16, 02:11](1017 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:16, 02:10](1010 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:12](1136 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:18, 02:10](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:19, 02:13](1010 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:09, 05:33](1177 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:30, 04:56](1156 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:10, 03:00](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:08, 03:03](2454 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:09](2392 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:16, 04:16] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:37, 05:31](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:40, 05:40] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:01, 02:56](1141 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:23, 01:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:19, 01:02](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:16, 01:04](571 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:48, 00:52](573 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 09:11] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:13, 03:31](2019 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:31, 09:31] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:14, 03:19](1986 MB) - -PASS -- COMPILE 'atml_intel' [09:19, 09:19] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 06:33](1894 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:54, 08:01](1904 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 03:26](1124 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:20, 05:20] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:51, 06:55](1927 MB) - -PASS -- COMPILE 'atmw_intel' [09:25, 09:25] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:32, 01:44](1929 MB) - -PASS -- COMPILE 'atmaero_intel' [09:18, 09:18] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:21, 04:35](2026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:10, 04:25](1797 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:05, 04:30](1820 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:51, 03:51] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:21, 17:09](4618 MB) - -PASS -- COMPILE 'atm_gnu' [04:09, 04:09] -PASS -- TEST 'control_c48_gnu' [10:05, 09:38](1510 MB) -PASS -- TEST 'control_stochy_gnu' [02:45, 02:33](723 MB) -PASS -- TEST 'control_ras_gnu' [04:16, 04:02](729 MB) -PASS -- TEST 'control_p8_gnu' [04:56, 04:05](1721 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:20, 03:47](1727 MB) -PASS -- TEST 'control_flake_gnu' [04:52, 04:42](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [09:08, 09:08] -PASS -- TEST 'rap_control_gnu' [09:04, 08:27](1081 MB) -PASS -- TEST 'rap_decomp_gnu' [09:01, 08:20](1084 MB) -PASS -- TEST 'rap_2threads_gnu' [08:01, 07:20](1136 MB) -PASS -- TEST 'rap_restart_gnu' [04:56, 04:10](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:06, 08:29](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:36, 08:59](1081 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:33, 06:01](886 MB) -PASS -- TEST 'hrrr_control_gnu' [04:49, 04:10](1068 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:40, 04:07](1132 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:45, 04:00](1041 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:21, 04:27](1068 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:40, 02:17](885 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:39, 02:17](934 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:47, 08:02](1076 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:31, 11:31] -PASS -- TEST 'control_diag_debug_gnu' [01:35, 01:13](1623 MB) -PASS -- TEST 'regional_debug_gnu' [07:18, 07:00](1137 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:05](1096 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:11, 01:58](1088 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:25, 02:06](1100 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:11, 02:01](1093 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:27, 02:08](1269 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:20, 03:12](1097 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:08, 01:58](1097 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:05, 01:57](1091 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:24, 01:15](727 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:27, 01:20](724 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:47, 01:24](1715 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:09, 02:02](1094 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1098 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:05, 03:30](1100 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:53, 02:53] -PASS -- TEST 'control_wam_debug_gnu' [05:49, 05:28](1567 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:48, 04:43] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:50, 08:09](961 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:57, 04:07](953 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:42, 07:03](966 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:25, 03:38](896 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:44, 03:59](946 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:21, 05:44](861 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:39, 02:17](860 MB) -PASS -- TEST 'conus13km_control_gnu' [03:12, 02:45](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:23, 01:04](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:48, 01:29](935 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:11, 09:11] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:42, 05:15](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:14, 06:14] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:02, 01:56](976 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:15, 02:02](973 MB) -PASS -- TEST 'conus13km_debug_gnu' [05:49, 05:30](1284 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:11, 05:48](960 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:37, 03:22](1193 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:11, 05:47](1353 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:10] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:11, 02:03](1007 MB) - -PASS -- COMPILE 's2swa_gnu' [17:22, 17:21] - -PASS -- COMPILE 's2s_gnu' [16:17, 16:16] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:09, 05:20](3124 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:09, 04:09] - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:59, 15:59] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:31, 25:49](3069 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:22, 04:22] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:54, 12:57](2926 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:47, 15:46] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:36, 02:29](769 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [15:11, 13:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:15, 07:39](2156 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 20:28] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:43, 13:19](1993 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:57, 15:23](2297 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:01, 07:19](1356 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:40, 16:29](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:01, 13:04](1989 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:40] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:43, 21:44](1986 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 13:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:27, 08:21](2221 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:16, 08:02](2214 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:18, 04:27](1975 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:07, 08:01](2230 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:03, 04:35](1746 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:12, 09:38](2554 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:59, 07:57](2206 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 06:48](2110 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:29, 08:13](2208 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:19, 15:15](2988 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [19:41, 06:38](2933 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:02, 09:35](3840 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:29, 06:40](3652 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 05:16](2159 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 13:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:03, 07:23](2026 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:14, 06:51](2081 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:40] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:17, 12:18](2240 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:17] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:07, 07:42](2041 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 12:26] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:09, 04:03](2082 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 12:37] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:44, 05:56](3037 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 02:11](3041 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:55, 01:15](2476 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:16] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:38, 07:40](2218 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:10, 13:47](2078 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:47, 06:56](1409 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:07] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:12, 23:51](2024 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:31](718 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:40, 03:39](1605 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:43](1611 MB) +PASS -- TEST 'control_latlon_intel' [05:36, 03:33](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 04:01](1602 MB) +PASS -- TEST 'control_c48_intel' [12:49, 10:30](1711 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:56, 05:57](839 MB) +PASS -- TEST 'control_c192_intel' [15:55, 13:41](1757 MB) +PASS -- TEST 'control_c384_intel' [19:51, 17:02](2012 MB) +PASS -- TEST 'control_c384gdas_intel' [13:22, 09:49](1498 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:48](668 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:03](550 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:47](666 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:32](660 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:40](678 MB) +PASS -- TEST 'control_p8_intel' [07:15, 04:19](1892 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:42, 03:13](1908 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:45, 03:57](1890 MB) +PASS -- TEST 'control_restart_p8_intel' [12:10, 03:37](1166 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:12, 04:02](1883 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:10, 03:07](1220 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:06, 04:25](1876 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:44, 03:38](1967 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:21, 07:40](1896 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:48, 05:26](1971 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:33, 03:44](1909 MB) +PASS -- TEST 'merra2_thompson_intel' [13:41, 04:52](1909 MB) +PASS -- TEST 'regional_control_intel' [09:01, 06:03](1204 MB) +PASS -- TEST 'regional_restart_intel' [08:33, 03:25](1170 MB) +PASS -- TEST 'regional_decomp_intel' [09:56, 07:05](1175 MB) +PASS -- TEST 'regional_2threads_intel' [06:57, 03:53](1152 MB) +PASS -- TEST 'regional_noquilt_intel' [15:37, 05:59](1525 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [14:57, 06:11](1201 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [14:50, 06:09](1193 MB) +PASS -- TEST 'regional_wofs_intel' [14:39, 05:47](2098 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:20] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [15:04, 06:47](1193 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:00, 03:45](1358 MB) +PASS -- TEST 'rap_decomp_intel' [17:07, 06:58](1142 MB) +PASS -- TEST 'rap_2threads_intel' [09:28, 06:17](1365 MB) +PASS -- TEST 'rap_restart_intel' [06:11, 03:30](1126 MB) +PASS -- TEST 'rap_sfcdiff_intel' [18:23, 06:47](1199 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:26, 07:18](1142 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:13, 05:02](1197 MB) +PASS -- TEST 'hrrr_control_intel' [11:52, 03:29](1058 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:55, 03:35](1044 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:02, 03:13](1119 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:35, 01:52](1016 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:04, 06:36](1205 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:39, 07:47](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:13, 07:32](2227 MB) + +PASS -- COMPILE 'csawmg_intel' [10:11, 08:18] +PASS -- TEST 'control_csawmg_intel' [10:50, 06:26](1052 MB) +PASS -- TEST 'control_ras_intel' [05:21, 02:55](841 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:10, 04:09] +PASS -- TEST 'control_csawmg_gnu' [09:45, 07:38](1084 MB) + +PASS -- COMPILE 'wam_intel' [10:10, 08:25] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:47, 10:03](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 09:21] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:14, 02:47](1895 MB) +PASS -- TEST 'regional_control_faster_intel' [06:47, 04:19](1198 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:05] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:44, 02:13](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:07](1622 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:42, 02:56](838 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:57, 02:37](840 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:33, 04:53](1151 MB) +PASS -- TEST 'control_ras_debug_intel' [05:47, 02:27](857 MB) +PASS -- TEST 'control_diag_debug_intel' [05:59, 02:32](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [06:43, 03:17](1917 MB) +PASS -- TEST 'regional_debug_intel' [19:41, 16:58](1142 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 04:31](1236 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:28, 04:50](1221 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 04:24](1223 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:50](1232 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:33, 04:29](1229 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:35, 04:48](1312 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:11, 04:44](1220 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:30, 04:36](1231 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:46, 04:42](1240 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:34, 04:23](1236 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:34, 04:35](1222 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:51, 04:46](1227 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:47, 07:36](1242 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 04:41](1234 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:30](1226 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:40](1233 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:12, 08:00](1229 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:48] +PASS -- TEST 'control_csawmg_debug_gnu' [03:40, 02:04](1052 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:52] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:38, 08:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:01](1227 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:59, 07:21](1177 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:19, 03:41](1045 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:58, 06:59](1286 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:56, 03:25](1038 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:49, 03:58](998 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:08, 05:29](1134 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:27, 01:53](975 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:37, 08:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:58, 02:11](1277 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:48, 00:52](1185 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:40, 01:19](1141 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:37, 08:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:53, 03:53](1077 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:52] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 04:45](1110 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:55](1111 MB) +PASS -- TEST 'conus13km_debug_intel' [16:49, 14:48](1326 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:47, 16:06](991 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:43, 11:34](1243 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:42, 15:46](1429 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:58] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 04:17](1163 MB) + +PASS -- COMPILE 'hafsw_intel' [11:38, 09:54] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:13, 05:24](861 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:30, 05:09](1238 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:21](938 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:11, 13:47](961 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:20, 15:41](982 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:01, 05:38](597 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:24, 07:01](605 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:54, 02:37](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:14, 07:37](546 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:44, 04:02](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:55, 03:48](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:58, 04:55](658 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:28, 01:11](447 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:37, 04:20] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:54, 11:25](619 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:44] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:25, 16:19](748 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:13, 17:05](841 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:37, 10:00] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:49, 09:48](823 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:28, 09:21] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:20, 05:47](912 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:14, 05:51](887 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:59, 16:34](1341 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:27, 05:33] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:18, 02:11](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:23](1094 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:18, 02:07](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:21, 02:09](1017 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:17, 02:10](1024 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:16, 02:12](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:13](1166 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:16, 02:08](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:06, 04:56](1179 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:00, 04:54](1159 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:10](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 03:12](2445 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:08](2453 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:25, 03:23] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:18](1074 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 05:24] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:11](1166 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 00:47] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:00](333 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 00:49](578 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:34](574 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 09:22] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:07, 04:25](2026 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 09:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:55, 04:18](1997 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 09:55] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:11, 05:51](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:11, 05:51](1901 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:58](1138 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:11, 04:32] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:14, 06:33](1910 MB) + +PASS -- COMPILE 'atmw_intel' [14:14, 09:58] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:02, 01:44](1937 MB) + +PASS -- COMPILE 'atmaero_intel' [14:14, 09:00] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:58, 03:48](2041 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:26](1804 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:25](1812 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:10, 04:03] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:46, 16:46](4609 MB) + +PASS -- COMPILE 'atm_gnu' [09:11, 04:34] +PASS -- TEST 'control_c48_gnu' [09:48, 07:50](1533 MB) +PASS -- TEST 'control_stochy_gnu' [04:27, 02:27](725 MB) +PASS -- TEST 'control_ras_gnu' [05:24, 03:58](730 MB) +PASS -- TEST 'control_p8_gnu' [07:02, 04:26](1728 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:01](1756 MB) +PASS -- TEST 'control_flake_gnu' [06:22, 04:46](813 MB) + +PASS -- COMPILE 'rrfs_gnu' [07:10, 03:53] +PASS -- TEST 'rap_control_gnu' [10:57, 08:42](1087 MB) +PASS -- TEST 'rap_decomp_gnu' [10:50, 08:32](1087 MB) +PASS -- TEST 'rap_2threads_gnu' [09:56, 07:23](1140 MB) +PASS -- TEST 'rap_restart_gnu' [07:15, 04:22](887 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:51, 08:46](1084 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:47, 08:16](1085 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:05, 06:12](887 MB) +PASS -- TEST 'hrrr_control_gnu' [06:57, 04:29](1071 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:51, 04:18](1141 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:01, 03:46](1035 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:58, 04:12](1073 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 02:21](887 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:29, 02:09](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:02, 07:59](1081 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:13, 06:23] +PASS -- TEST 'control_diag_debug_gnu' [03:40, 01:12](1624 MB) +PASS -- TEST 'regional_debug_gnu' [08:37, 06:34](1134 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:26, 02:10](1093 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:26, 01:58](1088 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:20, 02:09](1093 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:15](1095 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:30, 02:17](1268 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:12](1095 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:09](1093 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:20, 02:11](1091 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:11](726 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:27](725 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:26](1698 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:05](1096 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:12](1098 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:01, 03:30](1099 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:56] +PASS -- TEST 'control_wam_debug_gnu' [07:45, 05:37](1559 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [10:12, 07:39] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:03, 07:42](960 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:47, 04:16](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:58, 06:56](968 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:08, 03:44](889 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:50, 04:09](949 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:12, 05:55](864 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 02:06](862 MB) +PASS -- TEST 'conus13km_control_gnu' [04:48, 02:36](1268 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:42, 01:14](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:41, 01:31](933 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:12, 12:13] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:48, 05:10](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:12, 10:37] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 02:07](977 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:26, 02:05](972 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:53, 05:29](1287 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:53, 05:44](961 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:41, 03:39](1196 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 05:35](1355 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:12, 10:41] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:24, 02:03](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [24:13, 21:27] + +PASS -- COMPILE 's2s_gnu' [20:13, 18:08] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:31, 08:55](2752 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:15, 04:06] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 17:02] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:08, 25:52](2903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:12, 07:01] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:07, 12:11](3035 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [19:11, 17:25] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:18, 02:26](768 MB) SYNOPSIS: -Starting Date/Time: 20240904 10:36:24 -Ending Date/Time: 20240904 14:40:25 -Total Time: 04h:05m:00s +Starting Date/Time: 20240911 22:58:14 +Ending Date/Time: 20240912 00:56:44 +Total Time: 01h:59m:27s Compiles Completed: 57/57 -Tests Completed: 244/244 +Tests Completed: 243/244 +Failed Tests: +* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2363/tests/logs/log_hercules/run_cpld_mpi_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERCULES REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +17749118ba0dfcca7c2cac513d497ea37521edc8 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1831882 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 16:50] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:40, 13:53](2083 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:40, 16:23](1997 MB) + +SYNOPSIS: +Starting Date/Time: 20240912 11:50:27 +Ending Date/Time: 20240912 12:47:58 +Total Time: 00h:57m:55s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. From b58dc3e8f56c8e71d12880b94eee6ba9422ce3e9 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Thu, 12 Sep 2024 13:10:45 -0500 Subject: [PATCH 24/27] add orion RT logs: passed --- tests/logs/RegressionTests_orion.log | 616 +++++++++++++++------------ 1 file changed, 341 insertions(+), 275 deletions(-) diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 32dedc9cc3..2251322092 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: -b7fc09c740c82647c6dac1c3fd2ea36cbd07f8e8 +0ada1565625de2db2c9a41a044a14577648e4991 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - d90a4f0e1f8bffccc2d6ab4cbd2613a1d8a15e4b CMEPS-interface/CMEPS (cmeps_v0.4.1-3014-gd90a4f0e) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,287 +35,353 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240830 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1591166 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1933739 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 16:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:19, 14:13](2091 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 21:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:41, 17:59](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:19, 18:54](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 08:50](1199 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:40, 20:15](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 22:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:41, 17:43](1943 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 07:57] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:21, 27:31](1929 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:27, 14:13](2129 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:32, 14:14](2129 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:55, 07:53](1816 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:27, 14:44](2146 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:54, 07:53](1703 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:26, 13:12](2437 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:27, 14:10](2115 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:31, 12:18](2040 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:33, 14:15](2133 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:01, 16:42](2708 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:05, 08:54](2703 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:04, 11:37](3688 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 07:12](3490 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:22, 05:53](2099 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:36] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:02, 13:27](1977 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:08, 04:44](2049 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:11, 08:44] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:15, 08:39](2160 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:56] ( 1448 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:58, 06:18](2004 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:18] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:09, 04:36](2044 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 15:00] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:53, 09:58](3060 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:53, 03:29](3030 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:56, 02:13](2484 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:18, 14:28](2128 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:02, 18:13](1995 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 09:02](1246 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 20:05](1912 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:10, 08:12] ( 1558 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:16, 29:27](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:23, 03:41](698 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:47, 03:11](1586 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:52, 03:14](1599 MB) -PASS -- TEST 'control_latlon_intel' [04:41, 03:06](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:14](1587 MB) -PASS -- TEST 'control_c48_intel' [11:53, 09:29](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:32, 08:23](844 MB) -PASS -- TEST 'control_c192_intel' [13:55, 11:41](1723 MB) -PASS -- TEST 'control_c384_intel' [15:59, 13:00](1944 MB) -PASS -- TEST 'control_c384gdas_intel' [13:45, 09:42](1345 MB) -PASS -- TEST 'control_stochy_intel' [03:23, 01:50](647 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:40, 01:03](481 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 01:45](652 MB) -PASS -- TEST 'control_iovr4_intel' [04:57, 02:41](649 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 02:40](644 MB) -PASS -- TEST 'control_p8_intel' [06:07, 04:00](1884 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:09, 03:43](1877 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:30](1893 MB) -PASS -- TEST 'control_restart_p8_intel' [04:14, 01:59](1098 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:39](1875 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 01:57](1126 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:13, 03:38](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:11, 03:39](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:57, 06:02](1876 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:31, 04:59](1949 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:31, 03:32](1883 MB) -PASS -- TEST 'merra2_thompson_intel' [06:39, 03:56](1894 MB) -PASS -- TEST 'regional_control_intel' [08:40, 06:31](1079 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 03:28](1077 MB) -PASS -- TEST 'regional_decomp_intel' [09:00, 06:50](1067 MB) -PASS -- TEST 'regional_2threads_intel' [06:30, 04:36](1077 MB) -PASS -- TEST 'regional_noquilt_intel' [08:38, 06:25](1382 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 06:23](1087 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:21](1085 MB) -PASS -- TEST 'regional_wofs_intel' [09:36, 07:49](1904 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:44] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:18, 08:26](1053 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 05:05](1250 MB) -PASS -- TEST 'rap_decomp_intel' [11:00, 08:40](1023 MB) -PASS -- TEST 'rap_2threads_intel' [10:55, 08:28](1153 MB) -PASS -- TEST 'rap_restart_intel' [07:35, 04:21](1045 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:25, 08:17](1050 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:13, 08:35](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:32, 06:13](1074 MB) -PASS -- TEST 'hrrr_control_intel' [07:02, 04:19](1028 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:02, 04:25](1013 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 04:07](1089 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:42, 02:20](942 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:22, 08:15](1054 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:57](1979 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:43](2011 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:37] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:31](1019 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:28](712 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:46] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:50, 12:44](1655 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:58] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:30, 03:17](1879 MB) -PASS -- TEST 'regional_control_faster_intel' [08:35, 06:13](1071 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:46] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:52](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:39](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:04](823 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:45](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:26](1134 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:48](828 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 02:50](1676 MB) -PASS -- TEST 'control_debug_p8_intel' [05:45, 03:10](1910 MB) -PASS -- TEST 'regional_debug_intel' [18:39, 16:56](1096 MB) -PASS -- TEST 'rap_control_debug_intel' [06:21, 05:05](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:53](1206 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:48](1205 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:32, 05:03](1208 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 05:00](1206 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:40](1280 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:29](1205 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 04:59](1211 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:03](1216 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:58](1208 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:47](1207 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:28, 04:59](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:02](1204 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:58](1195 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:56](1207 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:54](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:26, 08:36](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:40] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:40, 13:40](1681 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 04:50](1132 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:15, 07:11](999 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:39, 03:44](924 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:55, 07:16](1069 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:12, 03:37](944 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:12, 03:53](902 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:34, 05:22](977 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [13:15, 02:02](878 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:53] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:55, 02:41](1168 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:50, 01:15](1117 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:56, 01:31](1070 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:41, 04:33](977 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:42] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:25, 04:57](1082 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 04:49](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [20:52, 14:40](1237 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:47, 14:40](942 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:44, 08:33](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:44, 15:08](1303 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:13, 06:43] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:27, 04:55](1131 MB) - -PASS -- COMPILE 'hafsw_intel' [17:12, 15:33] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:18, 05:59](733 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:32, 06:32](1115 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:34, 07:42](816 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [27:15, 24:05](849 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:21, 28:25](870 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:06, 07:13](500 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:31, 08:24](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [10:56, 03:27](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:31, 09:43](474 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:58, 04:46](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:03, 04:33](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:01, 05:46](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:36, 01:33](404 MB) -PASS -- TEST 'gnv1_nested_intel' [13:19, 04:21](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:18] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:06, 13:03](588 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:12, 15:14] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:05, 12:38](653 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:02, 13:02](726 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:36, 08:44](710 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:12, 15:03] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:22, 07:35](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:15, 07:29](795 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:00, 16:27](1201 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:07] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:24, 03:00](1159 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:22, 01:52](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:18, 02:51](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:20, 02:35](1009 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:19, 02:56](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:17, 02:58](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:19, 03:00](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [09:19, 02:51](1024 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:11, 06:31](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:06, 06:28](1003 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:22, 02:57](1152 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:21, 04:20](2397 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [14:19, 04:25](2452 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:44] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [15:21, 06:29](1082 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:55] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:21, 02:58](1145 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [12:34, 01:04](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:26, 00:56](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:30, 00:35](322 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:31] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [15:10, 04:11](1980 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:10] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:59, 03:59](1947 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:30] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:40, 04:55](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [15:32, 04:51](1866 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:47](1062 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:12, 07:50] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [15:34, 05:48](1892 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 13:45] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:22, 02:10](1909 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 13:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [14:12, 04:33](1984 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [16:16, 05:17](1768 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:08, 05:23](1784 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:29] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [31:58, 20:13](4562 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:27, 14:50](2095 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:11, 25:18] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:45, 18:05](1943 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:05, 19:08](2120 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:02, 09:00](1232 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:49, 20:21](1868 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:40, 17:50](1946 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 09:11] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:38, 28:20](1923 MB) + +PASS -- COMPILE 's2swa_intel' [17:11, 15:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:40, 14:23](2157 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:06, 14:20](2156 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:48, 08:00](1805 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:39, 14:31](2183 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:50, 07:48](1714 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:15, 13:13](2435 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:38, 14:30](2149 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:33, 12:08](2047 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:09, 14:13](2149 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:33, 16:56](2718 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:55, 08:49](2733 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:09, 10:42](3687 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:47, 06:37](3504 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:22, 05:57](2104 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [16:41, 13:59](1974 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:24, 07:48](2042 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:12, 09:05] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:21, 13:20](2186 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:12, 08:10] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:04, 09:18](1998 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 15:35] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:27, 04:44](2041 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 15:01] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:55, 08:34](3029 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:56, 03:22](3029 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:56, 02:12](2485 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:36] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:30, 15:00](2150 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:28] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:51, 18:22](2019 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:27, 09:06](1252 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 07:26] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:02, 29:59](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:25, 03:57](695 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:48, 03:30](1581 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:41](1586 MB) +PASS -- TEST 'control_latlon_intel' [05:45, 03:35](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:55, 03:34](1583 MB) +PASS -- TEST 'control_c48_intel' [16:54, 14:25](1715 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:35, 08:19](842 MB) +PASS -- TEST 'control_c192_intel' [14:58, 13:00](1753 MB) +PASS -- TEST 'control_c384_intel' [20:09, 16:29](2002 MB) +PASS -- TEST 'control_c384gdas_intel' [13:42, 09:42](1341 MB) +PASS -- TEST 'control_stochy_intel' [04:26, 02:21](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:03](474 MB) +PASS -- TEST 'control_lndp_intel' [04:27, 02:24](649 MB) +PASS -- TEST 'control_iovr4_intel' [04:29, 02:49](650 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 02:42](645 MB) +PASS -- TEST 'control_p8_intel' [06:17, 04:07](1873 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:29](1882 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 04:01](1884 MB) +PASS -- TEST 'control_restart_p8_intel' [05:14, 02:19](1094 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:03, 03:59](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:22, 02:15](1125 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:06, 04:03](1855 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:07, 04:22](1958 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:35, 07:10](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:57](1948 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:14, 03:28](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [06:26, 03:50](1891 MB) +PASS -- TEST 'regional_control_intel' [08:36, 06:31](1077 MB) +PASS -- TEST 'regional_restart_intel' [05:34, 03:33](1077 MB) +PASS -- TEST 'regional_decomp_intel' [08:38, 06:55](1073 MB) +PASS -- TEST 'regional_2threads_intel' [06:32, 04:40](1068 MB) +PASS -- TEST 'regional_noquilt_intel' [08:31, 06:16](1381 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 06:26](1079 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:36, 06:30](1085 MB) +PASS -- TEST 'regional_wofs_intel' [09:42, 07:51](1902 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:53] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:12, 08:26](1061 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 05:07](1261 MB) +PASS -- TEST 'rap_decomp_intel' [11:20, 08:38](1023 MB) +PASS -- TEST 'rap_2threads_intel' [11:35, 08:28](1157 MB) +PASS -- TEST 'rap_restart_intel' [08:00, 04:36](1041 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:07, 08:06](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:48, 08:48](1019 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:04, 06:14](1069 MB) +PASS -- TEST 'hrrr_control_intel' [06:57, 04:19](1028 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:22, 04:26](1017 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 04:08](1088 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:29](952 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:23, 08:29](1045 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 10:03](1987 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 09:45](2016 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:11] +PASS -- TEST 'control_csawmg_intel' [08:39, 06:48](1014 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:27](715 MB) + +PASS -- COMPILE 'wam_intel' [14:10, 12:36] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:46, 12:47](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:40, 12:52] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:01, 03:15](1878 MB) +PASS -- TEST 'regional_control_faster_intel' [08:39, 06:35](1071 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 09:35] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 02:24](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:44, 02:22](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:19](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:24, 03:02](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:25](1127 MB) +PASS -- TEST 'control_ras_debug_intel' [04:42, 03:07](827 MB) +PASS -- TEST 'control_diag_debug_intel' [05:47, 03:12](1669 MB) +PASS -- TEST 'control_debug_p8_intel' [05:45, 03:12](1903 MB) +PASS -- TEST 'regional_debug_intel' [19:43, 17:38](1087 MB) +PASS -- TEST 'rap_control_debug_intel' [07:23, 05:52](1198 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 05:06](1196 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 05:29](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:20, 06:11](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:44, 05:39](1213 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:42, 05:40](1284 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 05:18](1206 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:28, 05:15](1209 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:34, 05:16](1208 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:32, 05:26](1209 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:36, 05:04](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:00](1204 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:09](1207 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:53](1195 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:30, 06:24](1207 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 05:00](1208 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:26, 08:31](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:11, 06:24] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:44, 13:27](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:52, 04:52](1129 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 07:10](1001 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:27, 03:46](927 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:54, 07:19](1074 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:06, 03:37](942 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:32, 03:54](898 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:26, 05:21](975 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:01](879 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 02:40](1164 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:17](1115 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:34](1065 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:49, 04:33](970 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:27] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:58](1087 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:45](1085 MB) +PASS -- TEST 'conus13km_debug_intel' [16:53, 14:32](1237 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:38](930 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:40](1168 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:38, 14:48](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:48] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:05](1135 MB) + +PASS -- COMPILE 'hafsw_intel' [17:11, 15:15] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:10, 05:56](737 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:31](1114 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:31](815 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [27:12, 24:55](843 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:18, 28:26](876 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:59, 07:08](501 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:27, 08:19](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:29](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:34, 09:42](484 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 04:53](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:54, 04:33](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:52, 05:41](567 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:36](405 MB) +PASS -- TEST 'gnv1_nested_intel' [08:14, 04:18](1730 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:10, 07:59] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:09, 13:07](590 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:06] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:06, 12:58](665 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:08, 12:54](718 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:30] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:40, 08:47](717 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 14:13] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:22, 07:36](818 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 07:34](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:23](1202 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:12] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 03:00](1138 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:57](1115 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:53](1027 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:57](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:58](1014 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:04](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:02](1146 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:53](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:34](1025 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:26](1012 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:58](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:22](2458 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:23](2395 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:46] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:31](1087 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 09:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:56](1162 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:22] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 01:02](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:38](320 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 13:45] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:14, 04:11](1970 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:16] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:58, 04:04](1958 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:46] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:51](1867 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:25, 04:56](1857 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 02:47](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:10, 08:30] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:23, 05:57](1886 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:31] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 02:10](1910 MB) + +PASS -- COMPILE 'atmaero_intel' [15:10, 13:16] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:11, 04:35](1985 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:20](1770 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:24](1776 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:40] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:50, 20:23](4552 MB) SYNOPSIS: -Starting Date/Time: 20240830 11:24:28 -Ending Date/Time: 20240830 13:22:21 -Total Time: 01h:58m:55s +Starting Date/Time: 20240911 22:56:41 +Ending Date/Time: 20240912 00:41:20 +Total Time: 01h:45m:34s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 184/185 +Failed Tests: +* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2363/tests/logs/log_orion/run_cpld_mpi_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +17749118ba0dfcca7c2cac513d497ea37521edc8 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3664509 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 's2sw_pdlib_intel' [29:11, 28:00] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 18:20](2013 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:12, 20:31](1941 MB) + +SYNOPSIS: +Starting Date/Time: 20240912 11:52:41 +Ending Date/Time: 20240912 13:06:13 +Total Time: 01h:13m:41s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. From 4a21089b8a6341b9d21393f50628d79f338cdb5e Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Thu, 12 Sep 2024 19:44:10 +0000 Subject: [PATCH 25/27] WCOSS2 RT Log: Passed --- tests/logs/RegressionTests_wcoss2.log | 525 +++++++++++--------------- 1 file changed, 229 insertions(+), 296 deletions(-) diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 640843a9a8..fa1aba423b 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: -fec503e13e8d4b6708283f074b01445a68e50f43 +17749118ba0dfcca7c2cac513d497ea37521edc8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,308 +35,241 @@ 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-20240904 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_100506 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_185073 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:27] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:29, 02:21](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:29, 12:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [36:29, 02:50](1812 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:22, 02:25](1827 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:11, 03:08](956 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:30, 02:37](1794 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:46] ( 1 warnings 8 remarks ) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_sfs_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:15] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [42:37, 02:39](1842 MB) - -PASS -- COMPILE 's2swa_intel' [12:27, 11:09] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [37:31, 02:31](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:31, 02:45](3134 MB) -PASS -- TEST 'cpld_restart_p8_intel' [28:17, 02:04](3057 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [37:31, 02:27](3151 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [28:17, 02:44](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [37:31, 02:02](3368 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [37:31, 02:31](3120 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [37:32, 02:35](3071 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:31, 02:43](3137 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [37:40, 05:04](4124 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:07, 05:55](4262 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [37:31, 02:47](3110 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 10:44] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [37:30, 01:50](1827 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:30, 01:59](1900 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:16] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [37:31, 02:01](1889 MB) - -PASS -- COMPILE 's2s_intel' [12:28, 10:27] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [37:29, 01:58](2868 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [37:29, 02:29](2874 MB) -PASS -- TEST 'cpld_restart_c48_intel' [32:26, 02:05](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:35, 16:37] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [31:23, 02:52](3127 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:43] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:29, 02:10](1825 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:56, 02:38](987 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:33, 02:41](1802 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:04] ( 1539 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:18, 02:13](1848 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [27:07, 01:24](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [27:07, 01:30](1475 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:07, 02:24](1478 MB) -PASS -- TEST 'control_latlon_intel' [27:07, 01:20](1479 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:07, 02:27](1475 MB) -PASS -- TEST 'control_c48_intel' [27:06, 01:53](1559 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [27:06, 01:42](695 MB) -PASS -- TEST 'control_c192_intel' [27:07, 02:12](1576 MB) -PASS -- TEST 'control_c384_intel' [27:11, 03:01](1850 MB) -PASS -- TEST 'control_c384gdas_intel' [27:11, 03:44](1064 MB) -PASS -- TEST 'control_stochy_intel' [27:07, 01:26](524 MB) -PASS -- TEST 'control_stochy_restart_intel' [23:42, 02:02](328 MB) -PASS -- TEST 'control_lndp_intel' [27:07, 01:34](525 MB) -PASS -- TEST 'control_iovr4_intel' [27:07, 01:44](520 MB) -PASS -- TEST 'control_iovr5_intel' [27:07, 01:42](520 MB) -PASS -- TEST 'control_p8_intel' [27:07, 02:53](1750 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [27:07, 02:50](1759 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [27:07, 02:54](1759 MB) -PASS -- TEST 'control_restart_p8_intel' [20:41, 01:45](908 MB) -PASS -- TEST 'control_noqr_p8_intel' [23:38, 02:55](1746 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [16:32, 02:00](917 MB) -PASS -- TEST 'control_decomp_p8_intel' [22:38, 02:31](1756 MB) -PASS -- TEST 'control_2threads_p8_intel' [22:38, 02:48](1839 MB) -PASS -- TEST 'control_p8_lndp_intel' [22:30, 02:03](1756 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [22:22, 02:55](1813 MB) -PASS -- TEST 'control_p8_mynn_intel' [22:19, 02:50](1766 MB) -PASS -- TEST 'merra2_thompson_intel' [22:01, 02:48](1761 MB) -PASS -- TEST 'regional_control_intel' [21:42, 02:13](840 MB) -PASS -- TEST 'regional_restart_intel' [13:59, 01:22](839 MB) -PASS -- TEST 'regional_decomp_intel' [21:33, 01:59](844 MB) -PASS -- TEST 'regional_2threads_intel' [21:15, 01:54](899 MB) -PASS -- TEST 'regional_noquilt_intel' [21:08, 01:20](1172 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [20:58, 01:26](852 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [20:39, 02:11](841 MB) -PASS -- TEST 'regional_wofs_intel' [20:39, 01:32](1570 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 08:25] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [20:15, 02:59](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [19:25, 02:03](1053 MB) -PASS -- TEST 'rap_decomp_intel' [19:17, 02:18](909 MB) -PASS -- TEST 'rap_2threads_intel' [18:06, 02:12](990 MB) -PASS -- TEST 'rap_restart_intel' [09:45, 02:05](777 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:32, 03:05](906 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:55, 02:21](910 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:02, 02:40](778 MB) -PASS -- TEST 'hrrr_control_intel' [15:38, 02:22](900 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:23, 02:52](902 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [15:16, 02:19](980 MB) -PASS -- TEST 'hrrr_control_restart_intel' [09:14, 02:05](733 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:01, 03:02](900 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:44, 01:39](1867 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:31, 02:01](1856 MB) - -PASS -- COMPILE 'csawmg_intel' [09:24, 07:49] -PASS -- TEST 'control_csawmg_intel' [28:05, 01:30](861 MB) -PASS -- TEST 'control_ras_intel' [28:05, 01:58](557 MB) - -PASS -- COMPILE 'wam_intel' [09:24, 07:53] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [28:05, 01:29](1561 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:12] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [14:27, 03:05](1756 MB) -PASS -- TEST 'regional_control_faster_intel' [14:08, 01:22](842 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:21] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [14:08, 02:18](1488 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:59, 02:25](1498 MB) -PASS -- TEST 'control_stochy_debug_intel' [13:55, 01:48](703 MB) -PASS -- TEST 'control_lndp_debug_intel' [13:45, 02:03](705 MB) -PASS -- TEST 'control_csawmg_debug_intel' [13:13, 01:28](1006 MB) -PASS -- TEST 'control_ras_debug_intel' [12:59, 02:04](710 MB) -PASS -- TEST 'control_diag_debug_intel' [12:20, 02:07](1553 MB) -PASS -- TEST 'control_debug_p8_intel' [12:17, 01:51](1783 MB) -PASS -- TEST 'regional_debug_intel' [12:05, 01:13](883 MB) -PASS -- TEST 'rap_control_debug_intel' [11:57, 01:38](1085 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:25, 01:48](1078 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:14, 01:39](1080 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:14, 01:39](1083 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:57, 02:35](1086 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:25, 02:20](1164 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 02:29](1085 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 02:33](1087 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:17, 02:28](1080 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:11, 02:27](1086 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:53, 03:21](1081 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:41, 03:09](1080 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:32, 01:29](1082 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 02:58](1081 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 01:57](1083 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:34, 02:00](1082 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [06:31, 02:57](1088 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 04:29] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [30:09, 02:08](1586 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:51] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:29, 03:16](918 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:54, 02:58](785 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:17, 03:52](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:44, 02:13](846 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:31, 03:24](832 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:27, 02:53](780 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [56:46, 02:31](681 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [57:57, 01:21](665 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:25, 07:50] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:06, 03:06](989 MB) -PASS -- TEST 'conus13km_2threads_intel' [58:11, 01:54](994 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [58:05, 01:42](864 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:57] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [03:53, 02:15](810 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:29] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [03:23, 01:56](960 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:49, 01:28](955 MB) -PASS -- TEST 'conus13km_debug_intel' [01:43, 01:53](1037 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [01:43, 01:47](711 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [59:53, 02:11](1046 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [59:47, 01:40](1110 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:20] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [59:47, 01:55](986 MB) - -PASS -- COMPILE 'hafsw_intel' [11:26, 09:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [59:50, 02:56](604 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [59:49, 01:46](947 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [59:48, 02:37](637 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [59:46, 02:27](671 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [58:50, 02:34](694 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [58:49, 02:07](380 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:47, 03:15](387 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [58:46, 02:41](280 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [58:35, 03:26](365 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [57:58, 01:44](403 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [57:58, 02:07](408 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:40, 01:44](478 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:27, 01:31](316 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:53] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:20, 02:17](507 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:24, 09:07] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:04, 01:49](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:49, 02:36](702 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:24, 09:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:53, 02:07](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:24, 08:40] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [54:53, 03:07](640 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:50, 03:02](628 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [54:27, 01:20](821 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:28, 10:04] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [54:26, 02:36](1822 MB) - -PASS -- COMPILE 'atml_intel' [10:24, 09:02] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:20, 05:19] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [09:28, 08:12] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [54:25, 02:16](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [53:54, 02:42](2905 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [53:53, 02:36](2917 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:19, 04:23] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [52:42, 01:45](4443 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:30, 11:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [35:46, 02:35](3105 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:29, 12:05] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [34:48, 02:35](1808 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:37, 02:42](1842 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:15, 02:52](967 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:49, 03:03](1787 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:30, 11:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [35:46, 01:54](1811 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:23, 05:11] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [41:56, 02:51](1836 MB) + +PASS -- COMPILE 's2swa_intel' [13:31, 11:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [35:45, 02:23](3131 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:45, 02:45](3128 MB) +PASS -- TEST 'cpld_restart_p8_intel' [24:24, 02:56](3062 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [35:45, 02:20](3149 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [24:24, 02:47](3078 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [35:45, 02:17](3372 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [35:45, 02:26](3127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [35:46, 03:02](3076 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:45, 02:41](3129 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [35:54, 05:08](4117 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:54, 06:01](4267 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [35:45, 02:46](3113 MB) + +PASS -- COMPILE 's2sw_intel' [13:28, 10:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [35:50, 02:55](1827 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:50, 02:46](1899 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:29, 10:08] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [36:48, 02:47](1885 MB) + +PASS -- COMPILE 's2s_intel' [12:29, 10:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [36:47, 01:42](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [36:47, 02:17](2879 MB) +PASS -- TEST 'cpld_restart_c48_intel' [31:48, 02:01](2289 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:44, 16:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [30:33, 02:49](3131 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:31, 11:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [34:46, 02:45](1834 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:13, 02:19](1001 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:48, 02:27](1797 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:03] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:36, 01:47](1856 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:30, 08:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [26:18, 01:43](569 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [26:18, 01:49](1462 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:18, 01:43](1472 MB) +PASS -- TEST 'control_latlon_intel' [26:18, 01:44](1472 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [26:18, 01:52](1473 MB) +PASS -- TEST 'control_c48_intel' [26:17, 02:02](1569 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [26:17, 02:06](691 MB) +PASS -- TEST 'control_c192_intel' [26:17, 01:54](1589 MB) +PASS -- TEST 'control_c384_intel' [26:22, 03:23](1884 MB) +PASS -- TEST 'control_c384gdas_intel' [26:14, 03:23](1066 MB) +PASS -- TEST 'control_stochy_intel' [25:57, 02:02](522 MB) +PASS -- TEST 'control_stochy_restart_intel' [21:22, 02:03](329 MB) +PASS -- TEST 'control_lndp_intel' [25:14, 01:28](522 MB) +PASS -- TEST 'control_iovr4_intel' [25:14, 01:38](521 MB) +PASS -- TEST 'control_iovr5_intel' [24:30, 01:46](521 MB) +PASS -- TEST 'control_p8_intel' [24:12, 02:06](1754 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [24:08, 02:44](1765 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [24:05, 02:17](1756 MB) +PASS -- TEST 'control_restart_p8_intel' [16:44, 02:50](913 MB) +PASS -- TEST 'control_noqr_p8_intel' [21:46, 02:31](1758 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [14:46, 02:51](905 MB) +PASS -- TEST 'control_decomp_p8_intel' [20:44, 02:04](1754 MB) +PASS -- TEST 'control_2threads_p8_intel' [20:20, 02:17](1844 MB) +PASS -- TEST 'control_p8_lndp_intel' [20:17, 02:22](1766 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [20:14, 03:06](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [20:09, 02:42](1768 MB) +PASS -- TEST 'merra2_thompson_intel' [19:43, 03:03](1767 MB) +PASS -- TEST 'regional_control_intel' [19:40, 01:32](852 MB) +PASS -- TEST 'regional_restart_intel' [11:53, 01:14](840 MB) +PASS -- TEST 'regional_decomp_intel' [18:54, 01:50](838 MB) +PASS -- TEST 'regional_2threads_intel' [18:55, 01:42](895 MB) +PASS -- TEST 'regional_noquilt_intel' [17:51, 01:56](1171 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [17:39, 02:00](845 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [17:28, 02:01](844 MB) +PASS -- TEST 'regional_wofs_intel' [16:41, 01:28](1569 MB) + +PASS -- COMPILE 'rrfs_intel' [10:29, 08:27] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [16:37, 02:52](910 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:08, 02:09](1053 MB) +PASS -- TEST 'rap_decomp_intel' [14:35, 02:15](912 MB) +PASS -- TEST 'rap_2threads_intel' [14:12, 02:12](990 MB) +PASS -- TEST 'rap_restart_intel' [06:04, 02:20](777 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:53, 03:17](906 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:11, 02:50](909 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [02:19, 02:38](780 MB) +PASS -- TEST 'hrrr_control_intel' [12:58, 02:26](905 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:47, 02:26](901 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:46, 02:25](978 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:01, 02:06](732 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:44, 02:45](901 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:41, 02:30](1861 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:58, 01:55](1852 MB) + +PASS -- COMPILE 'csawmg_intel' [09:30, 07:56] +PASS -- TEST 'control_csawmg_intel' [26:19, 02:17](861 MB) +PASS -- TEST 'control_ras_intel' [26:19, 02:13](561 MB) + +PASS -- COMPILE 'wam_intel' [09:27, 07:52] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:45, 01:18](1558 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:27, 08:08] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:06, 02:27](1752 MB) +PASS -- TEST 'regional_control_faster_intel' [11:04, 01:50](837 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:29, 07:34] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:04, 02:07](1496 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:07, 01:37](1493 MB) +PASS -- TEST 'control_stochy_debug_intel' [10:03, 01:37](704 MB) +PASS -- TEST 'control_lndp_debug_intel' [09:50, 01:31](699 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:49, 01:50](1006 MB) +PASS -- TEST 'control_ras_debug_intel' [08:40, 01:34](708 MB) +PASS -- TEST 'control_diag_debug_intel' [08:14, 02:15](1552 MB) +PASS -- TEST 'control_debug_p8_intel' [07:59, 02:16](1790 MB) +PASS -- TEST 'regional_debug_intel' [07:55, 01:15](884 MB) +PASS -- TEST 'rap_control_debug_intel' [06:55, 01:50](1083 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:47, 01:56](1074 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 01:41](1081 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:52, 01:47](1078 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 01:43](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:14, 01:42](1167 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:35, 01:22](1087 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:32, 01:21](1083 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:22, 01:59](1084 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:15, 01:39](1082 MB) +PASS -- TEST 'rap_noah_debug_intel' [03:28, 02:10](1079 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [03:12, 02:25](1079 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [03:05, 02:20](1079 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [02:34, 01:36](1080 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [02:18, 01:49](1082 MB) +PASS -- TEST 'rap_flake_debug_intel' [02:15, 01:36](1081 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:12, 02:43](1086 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:23, 04:27] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [29:11, 02:16](1580 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:37, 07:46] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:07, 01:59](921 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [02:02, 02:09](784 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [02:02, 03:14](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:24, 02:08](843 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [01:15, 02:50](836 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:55, 02:25](779 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:37, 02:50](685 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [55:14, 01:49](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:35, 08:03] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [59:25, 02:16](988 MB) +PASS -- TEST 'conus13km_2threads_intel' [49:58, 01:44](994 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [49:39, 01:54](864 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:55] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [59:11, 01:47](813 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:22, 04:39] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:01, 01:58](960 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:42, 01:57](954 MB) +PASS -- TEST 'conus13km_debug_intel' [58:13, 02:21](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [57:40, 01:51](709 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [57:29, 01:31](1042 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:25, 01:59](1110 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:21] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:01, 02:07](989 MB) + +PASS -- COMPILE 'hafsw_intel' [11:26, 09:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [57:03, 03:27](597 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:00, 01:43](950 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [55:48, 02:54](636 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [55:41, 03:22](674 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [55:06, 02:41](692 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [55:01, 02:24](377 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [55:00, 03:02](390 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [55:00, 02:35](277 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [55:02, 03:21](364 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [54:46, 02:27](403 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [54:43, 01:57](406 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [54:39, 02:20](481 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:53, 01:27](342 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:21, 04:55] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [53:45, 02:17](502 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:19] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:29, 02:16](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [52:06, 02:12](701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:24] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [51:25, 03:00](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:31, 08:41] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [49:05, 02:35](637 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:43, 02:42](625 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [47:54, 01:50](879 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:44, 10:18] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [47:16, 02:30](1824 MB) + +PASS -- COMPILE 'atml_intel' [11:39, 08:55] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:21, 05:20] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:26, 08:12] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [47:15, 02:10](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [46:59, 02:25](2908 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [46:15, 02:51](2916 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:31, 04:22] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [45:40, 01:54](4441 MB) SYNOPSIS: -Starting Date/Time: 20240905 17:09:45 -Ending Date/Time: 20240905 18:34:06 -Total Time: 01h:24m:50s +Starting Date/Time: 20240912 18:10:27 +Ending Date/Time: 20240912 19:41:57 +Total Time: 01h:32m:15s Compiles Completed: 33/33 -Tests Completed: 155/156 -Failed Tests: -* TEST cpld_control_sfs_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_wcoss2/run_cpld_control_sfs_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -fec503e13e8d4b6708283f074b01445a68e50f43 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 663554e1c1724ade6292cf0a28a3c19e59caf980 CMEPS-interface/CMEPS (cmeps_v0.4.1-2309-g663554e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 40e014f3ec805fc10399b53ad6810bc57a79ce9e FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 44700d5e92f00524ade276062e1f7c50e554c0fb FV3/ccpp/physics (EP4-865-g44700d5e) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_68121 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-c) - CREATE NEW BASELINES -* (-n) - RUN SINGLE TEST: cpld_control_sfs -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:35, 12:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:08, 01:46](1806 MB) - -SYNOPSIS: -Starting Date/Time: 20240905 20:25:17 -Ending Date/Time: 20240905 20:59:08 -Total Time: 00h:34m:06s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 156/156 NOTES: A file 'test_changes.list' was generated but is empty. From 37760d5c0dcdd1469d82426ff2eb2d1ccb02186e Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 13 Sep 2024 11:20:40 +0000 Subject: [PATCH 26/27] Acorn RT Log: Passed --- tests/logs/RegressionTests_acorn.log | 512 +++++++++++++-------------- 1 file changed, 256 insertions(+), 256 deletions(-) diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 03da0ffd37..786d4b74e8 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: -a78129ced4e805131daeb5617e71ca20902410ca +17749118ba0dfcca7c2cac513d497ea37521edc8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,267 +35,267 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2746491 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_528239 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:25, 10:23] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:34, 03:31](3309 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:19] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [51:28, 04:26](2090 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:17, 04:21](2111 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [29:15, 04:13](1207 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [51:29, 02:51](2169 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 16:19] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [52:27, 02:01](2089 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:52] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [02:40, 03:50](2170 MB) - -PASS -- COMPILE 's2swa_intel' [12:26, 10:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [57:33, 02:33](3322 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [57:33, 03:28](3339 MB) -PASS -- TEST 'cpld_restart_p8_intel' [43:20, 02:15](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [57:33, 02:29](3364 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [43:20, 03:00](3277 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [57:33, 02:39](3622 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [57:33, 02:22](3334 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [57:34, 02:38](3452 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:33, 03:07](3323 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [57:33, 03:09](3272 MB) - -PASS -- COMPILE 's2sw_intel' [11:26, 09:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [58:33, 02:52](2004 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:33, 03:17](2029 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:26, 09:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:33, 03:10](2039 MB) - -PASS -- COMPILE 's2s_intel' [12:25, 10:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [57:33, 01:59](2883 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [57:33, 02:28](2898 MB) -PASS -- TEST 'cpld_restart_c48_intel' [51:54, 02:48](2320 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:30, 14:36] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [53:29, 03:18](3341 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:31, 15:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:27, 02:19](2107 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:42, 02:20](1262 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:30, 02:32](2179 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:33] ( 1559 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [55:20, 02:18](2199 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:18] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [47:08, 01:22](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [47:08, 01:51](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [47:08, 01:28](1550 MB) -PASS -- TEST 'control_latlon_intel' [45:26, 01:45](1554 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [45:18, 02:31](1551 MB) -PASS -- TEST 'control_c48_intel' [42:11, 01:54](1574 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [40:27, 01:46](715 MB) -PASS -- TEST 'control_c192_intel' [38:51, 02:28](1785 MB) -PASS -- TEST 'control_c384_intel' [37:34, 03:11](3082 MB) -PASS -- TEST 'control_c384gdas_intel' [35:29, 03:39](2304 MB) -PASS -- TEST 'control_stochy_intel' [33:37, 01:24](603 MB) -PASS -- TEST 'control_stochy_restart_intel' [24:00, 01:35](412 MB) -PASS -- TEST 'control_lndp_intel' [33:29, 01:33](603 MB) -PASS -- TEST 'control_iovr4_intel' [33:18, 02:01](599 MB) -PASS -- TEST 'control_iovr5_intel' [32:34, 01:34](606 MB) -PASS -- TEST 'control_p8_intel' [32:15, 02:47](1826 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [31:28, 02:32](1846 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [31:26, 03:45](1841 MB) -PASS -- TEST 'control_restart_p8_intel' [19:11, 02:51](973 MB) -PASS -- TEST 'control_noqr_p8_intel' [30:02, 03:33](1836 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [16:34, 03:02](1004 MB) -PASS -- TEST 'control_decomp_p8_intel' [29:55, 02:47](1834 MB) -PASS -- TEST 'control_2threads_p8_intel' [29:51, 02:59](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [29:33, 02:19](1826 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [29:30, 03:00](1898 MB) -PASS -- TEST 'control_p8_mynn_intel' [28:58, 02:46](1829 MB) -PASS -- TEST 'merra2_thompson_intel' [28:24, 04:15](1847 MB) -PASS -- TEST 'regional_control_intel' [27:58, 01:14](865 MB) -PASS -- TEST 'regional_restart_intel' [20:05, 01:23](861 MB) -PASS -- TEST 'regional_decomp_intel' [27:01, 02:13](864 MB) -PASS -- TEST 'regional_2threads_intel' [25:25, 01:27](1178 MB) -PASS -- TEST 'regional_noquilt_intel' [23:53, 01:35](1190 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [23:50, 01:46](860 MB) -PASS -- TEST 'regional_wofs_intel' [23:14, 01:51](1597 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:26] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [48:09, 03:58](988 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [48:10, 02:03](1660 MB) -PASS -- TEST 'rap_decomp_intel' [48:09, 04:06](991 MB) -PASS -- TEST 'rap_2threads_intel' [48:09, 02:43](1091 MB) -PASS -- TEST 'rap_restart_intel' [21:29, 03:44](832 MB) -PASS -- TEST 'rap_sfcdiff_intel' [48:09, 03:35](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [48:09, 03:18](986 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [21:38, 03:29](833 MB) -PASS -- TEST 'hrrr_control_intel' [48:09, 03:21](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [48:09, 03:23](984 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [48:10, 04:05](1215 MB) -PASS -- TEST 'hrrr_control_restart_intel' [20:54, 02:16](783 MB) -PASS -- TEST 'rrfs_v1beta_intel' [48:09, 03:53](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [48:09, 01:49](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [48:09, 01:42](1934 MB) - -PASS -- COMPILE 'csawmg_intel' [10:24, 08:14] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [47:10, 01:56](923 MB) -PASS -- TEST 'control_ras_intel' [47:10, 01:44](639 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 08:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [47:09, 01:52](1636 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [19:15, 03:09](1833 MB) -PASS -- TEST 'regional_control_faster_intel' [19:17, 01:54](847 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:03] ( 883 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:05, 01:20](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:55, 02:30](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [18:26, 01:52](796 MB) -PASS -- TEST 'control_lndp_debug_intel' [16:53, 01:50](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:36, 01:42](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [16:28, 01:18](807 MB) -PASS -- TEST 'control_diag_debug_intel' [16:09, 02:19](1653 MB) -PASS -- TEST 'control_debug_p8_intel' [16:08, 02:06](1885 MB) -PASS -- TEST 'regional_debug_intel' [15:35, 01:31](931 MB) -PASS -- TEST 'rap_control_debug_intel' [15:16, 01:19](1177 MB) -PASS -- TEST 'hrrr_control_debug_intel' [15:01, 01:20](1170 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [14:20, 01:32](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [14:10, 02:09](1176 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:30, 01:20](1176 MB) -PASS -- TEST 'rap_diag_debug_intel' [12:59, 02:30](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:42, 02:07](1177 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:43, 02:06](1177 MB) -PASS -- TEST 'rap_lndp_debug_intel' [12:05, 01:49](1181 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:58, 01:45](1178 MB) -PASS -- TEST 'rap_noah_debug_intel' [11:53, 01:53](1171 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:50, 02:13](1174 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:48, 02:07](1172 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:23, 01:39](1170 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:01, 01:38](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:07, 02:15](1177 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:06, 04:03](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:24, 04:51] ( 838 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:56, 02:15](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:27, 08:11] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:19, 02:07](1527 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:51, 03:22](870 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:17, 04:34](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:08, 02:46](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:52, 04:44](1069 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:44, 03:45](861 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [56:30, 03:41](760 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [56:56, 01:17](747 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:27, 08:11] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:35, 02:03](1066 MB) -PASS -- TEST 'conus13km_2threads_intel' [47:08, 02:09](1394 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [47:06, 01:32](910 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:25, 08:16] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:42, 01:54](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:49] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:18, 01:34](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 01:40](1056 MB) -PASS -- TEST 'conus13km_debug_intel' [06:51, 02:08](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [06:46, 01:39](828 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [06:00, 01:42](1477 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:36, 01:57](1230 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:47] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:50, 02:03](1075 MB) - -PASS -- COMPILE 'hafsw_intel' [22:37, 09:30] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:18, 02:44](1676 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:13, 01:46](2028 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [03:34, 03:05](1196 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [03:26, 03:04](1231 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [03:22, 02:20](1382 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:09, 02:41](917 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:18, 03:03](1204 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [02:04, 02:20](1098 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:53, 03:41](1945 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:44, 02:21](956 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:31, 02:27](955 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [58:25, 01:55](1546 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:10, 02:03](1128 MB) -PASS -- TEST 'gnv1_nested_intel' [56:56, 04:32](1897 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [20:35, 05:23] ( 1466 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [56:33, 02:19](1641 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:40, 09:08] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [54:41, 01:49](1594 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [54:29, 02:07](1767 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [23:39, 09:12] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [54:01, 02:32](1763 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:34, 08:57] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [53:23, 02:36](1183 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:27, 03:15](1166 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [50:08, 01:26](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [39:57, 09:24] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [49:41, 02:00](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [44:16, 01:14](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [43:21, 01:59](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [42:31, 01:46](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [41:18, 01:25](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [40:59, 01:44](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [40:19, 02:11](769 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [40:18, 01:19](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [40:17, 02:20](816 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:28, 02:12](795 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [38:11, 02:06](756 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [37:58, 01:43](2036 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [36:25, 02:07](2035 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [38:54, 09:13] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [36:08, 01:20](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [32:48, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:05, 01:42](609 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [34:40, 02:16](747 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [28:50, 01:26](751 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [45:00, 09:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [34:25, 01:52](1954 MB) - -PASS -- COMPILE 'atml_intel' [46:02, 09:11] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [33:18, 03:01](2171 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [32:57, 03:53](2171 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:31, 02:00](1324 MB) - -PASS -- COMPILE 'atml_debug_intel' [32:48, 05:29] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [32:29, 03:47](2216 MB) - -PASS -- COMPILE 'atmw_intel' [34:50, 08:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [32:14, 03:08](1935 MB) - -PASS -- COMPILE 'atmaero_intel' [34:49, 08:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [31:42, 02:51](3215 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [31:36, 03:07](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [31:26, 02:58](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [32:49, 04:50] ( 883 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:50, 02:54](4801 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:06] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [42:29, 02:57](3360 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:15] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [36:23, 03:41](2173 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:11, 03:30](2176 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:11, 04:05](1324 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [36:24, 02:44](2275 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:34, 17:37] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [34:19, 02:07](2159 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:20] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [46:33, 04:16](2244 MB) + +PASS -- COMPILE 's2swa_intel' [12:26, 10:22] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [41:27, 02:43](3391 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:27, 03:24](3389 MB) +PASS -- TEST 'cpld_restart_p8_intel' [29:46, 02:58](3305 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [41:27, 02:38](3411 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [29:46, 02:15](3325 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [41:27, 02:20](3694 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [41:27, 02:42](3386 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [41:28, 02:23](3516 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:27, 03:05](3390 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [41:27, 02:19](3294 MB) + +PASS -- COMPILE 's2sw_intel' [11:25, 09:34] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [42:28, 02:11](2079 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:28, 03:18](2083 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:27, 12:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [40:26, 02:29](2092 MB) + +PASS -- COMPILE 's2s_intel' [11:23, 09:27] ( 2 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [42:28, 02:24](2890 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [42:28, 01:54](2898 MB) +PASS -- TEST 'cpld_restart_c48_intel' [38:00, 02:32](2312 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:29, 15:01] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [37:23, 02:36](3400 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:33, 16:41] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:20, 02:02](2167 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:37, 02:49](1342 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:32, 02:15](2273 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:22] ( 1524 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:44, 02:04](2283 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:35] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [31:25, 01:45](711 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [30:53, 01:58](1604 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:27, 01:34](1622 MB) +PASS -- TEST 'control_latlon_intel' [29:49, 01:46](1616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:31, 02:07](1608 MB) +PASS -- TEST 'control_c48_intel' [27:17, 02:26](1590 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [27:15, 02:18](712 MB) +PASS -- TEST 'control_c192_intel' [25:49, 01:34](1842 MB) +PASS -- TEST 'control_c384_intel' [24:15, 03:24](3263 MB) +PASS -- TEST 'control_c384gdas_intel' [23:19, 03:16](2445 MB) +PASS -- TEST 'control_stochy_intel' [21:24, 01:38](666 MB) +PASS -- TEST 'control_stochy_restart_intel' [10:47, 01:29](469 MB) +PASS -- TEST 'control_lndp_intel' [19:35, 02:00](668 MB) +PASS -- TEST 'control_iovr4_intel' [18:34, 02:00](667 MB) +PASS -- TEST 'control_iovr5_intel' [18:31, 01:53](667 MB) +PASS -- TEST 'control_p8_intel' [17:25, 03:28](1908 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [17:24, 02:58](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [17:23, 02:51](1910 MB) +PASS -- TEST 'control_restart_p8_intel' [04:59, 03:27](1054 MB) +PASS -- TEST 'control_noqr_p8_intel' [17:22, 02:23](1901 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:04, 02:32](1063 MB) +PASS -- TEST 'control_decomp_p8_intel' [16:10, 02:08](1902 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:08, 03:45](1985 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:42, 01:30](1891 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:47, 03:45](1960 MB) +PASS -- TEST 'control_p8_mynn_intel' [13:43, 03:15](1911 MB) +PASS -- TEST 'merra2_thompson_intel' [13:16, 03:50](1901 MB) +PASS -- TEST 'regional_control_intel' [12:46, 02:00](861 MB) +PASS -- TEST 'regional_restart_intel' [02:53, 01:36](861 MB) +PASS -- TEST 'regional_decomp_intel' [12:12, 01:26](864 MB) +PASS -- TEST 'regional_2threads_intel' [12:11, 01:22](1241 MB) +PASS -- TEST 'regional_noquilt_intel' [10:00, 01:27](1190 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:55, 01:40](867 MB) +PASS -- TEST 'regional_wofs_intel' [08:25, 01:32](1592 MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 08:12] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [33:05, 02:55](1054 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:06, 02:13](1749 MB) +PASS -- TEST 'rap_decomp_intel' [33:05, 03:06](1049 MB) +PASS -- TEST 'rap_2threads_intel' [33:05, 04:01](1137 MB) +PASS -- TEST 'rap_restart_intel' [08:26, 03:04](861 MB) +PASS -- TEST 'rap_sfcdiff_intel' [33:05, 03:57](1053 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:05, 03:03](1045 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 03:05](861 MB) +PASS -- TEST 'hrrr_control_intel' [33:05, 02:20](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [33:05, 03:19](1042 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [33:06, 04:04](1269 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:51, 02:12](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [33:05, 03:31](1042 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [33:05, 02:15](2007 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [32:29, 01:32](1995 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:47] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [32:16, 01:25](1007 MB) +PASS -- TEST 'control_ras_intel' [04:56, 01:48](702 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 07:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [04:54, 01:27](1703 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:31, 08:05] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:54, 02:52](1897 MB) +PASS -- TEST 'regional_control_faster_intel' [04:32, 02:07](860 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:28, 06:51] ( 883 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:13, 01:41](1658 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:42, 02:28](1653 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:33, 01:34](858 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:22, 02:02](858 MB) +PASS -- TEST 'control_csawmg_debug_intel' [02:22, 02:09](1158 MB) +PASS -- TEST 'control_ras_debug_intel' [02:13, 02:03](862 MB) +PASS -- TEST 'control_diag_debug_intel' [01:25, 02:17](1718 MB) +PASS -- TEST 'control_debug_p8_intel' [00:40, 02:11](1952 MB) +PASS -- TEST 'regional_debug_intel' [59:52, 01:38](920 MB) +PASS -- TEST 'rap_control_debug_intel' [00:17, 01:29](1237 MB) +PASS -- TEST 'hrrr_control_debug_intel' [59:59, 01:58](1232 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [59:23, 02:17](1235 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [59:18, 01:20](1232 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [58:44, 01:42](1236 MB) +PASS -- TEST 'rap_diag_debug_intel' [58:34, 01:59](1318 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:30, 01:20](1237 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:25, 02:09](1239 MB) +PASS -- TEST 'rap_lndp_debug_intel' [58:21, 02:10](1240 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:07, 02:10](1239 MB) +PASS -- TEST 'rap_noah_debug_intel' [57:38, 01:19](1233 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [57:16, 01:47](1234 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [57:04, 02:02](1235 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [57:03, 02:04](1231 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [57:00, 02:15](1239 MB) +PASS -- TEST 'rap_flake_debug_intel' [56:51, 02:03](1240 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [56:32, 03:47](1241 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:26, 04:24] ( 838 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [55:50, 02:03](1738 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:38, 07:48] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:30, 01:53](1614 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [55:02, 02:57](927 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [54:52, 04:13](925 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [54:37, 03:11](988 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [54:30, 04:34](1127 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:47, 04:01](923 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:15, 03:54](819 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [43:29, 01:23](803 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:39, 07:49] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [53:25, 02:18](1129 MB) +PASS -- TEST 'conus13km_2threads_intel' [46:13, 01:56](1474 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [45:26, 01:15](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:38, 07:53] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [52:46, 02:35](956 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [24:40, 04:23] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [52:44, 01:44](1113 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [51:44, 01:35](1114 MB) +PASS -- TEST 'conus13km_debug_intel' [51:22, 01:48](1210 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [51:13, 01:47](864 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [50:49, 02:02](1542 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [50:43, 01:19](1278 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:55, 04:20] ( 786 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [49:47, 02:04](1135 MB) + +PASS -- COMPILE 'hafsw_intel' [41:57, 09:03] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [49:54, 02:37](1814 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:08, 01:29](2163 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [48:53, 02:20](1278 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [48:46, 02:35](1317 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:34, 02:51](1479 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:32, 02:14](1010 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:14, 02:33](1324 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [47:44, 02:05](1204 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:44, 03:32](2130 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [45:14, 02:14](1047 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [44:23, 02:37](1047 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [43:53, 02:28](1683 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [43:31, 02:04](1232 MB) +PASS -- TEST 'gnv1_nested_intel' [43:11, 04:33](1973 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [36:55, 04:39] ( 1466 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:27, 02:16](1727 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [49:07, 08:49] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:51, 02:41](1723 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:51, 02:12](1902 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [49:06, 08:56] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [35:17, 02:26](1896 MB) + +PASS -- COMPILE 'hafs_all_intel' [49:03, 08:33] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [33:51, 03:09](1268 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [33:51, 02:29](1256 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:49, 02:08](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [41:56, 09:01] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [29:46, 02:03](772 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [17:13, 02:08](761 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [29:46, 02:01](652 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [29:46, 02:09](650 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:46, 01:40](650 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:13, 02:11](772 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [28:55, 01:34](771 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [27:31, 01:52](658 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:26, 02:22](868 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [24:22, 01:51](852 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [24:21, 01:48](772 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [24:07, 01:53](2038 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [23:52, 01:27](2038 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [41:58, 08:46] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [23:09, 01:18](772 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [34:49, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:52, 01:24](671 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [35:52, 01:57](816 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [23:04, 02:07](818 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [40:57, 09:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:19, 01:55](2024 MB) + +PASS -- COMPILE 'atml_intel' [27:42, 08:42] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [21:50, 03:52](2274 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [21:35, 02:59](2260 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:09, 01:30](1412 MB) + +PASS -- COMPILE 'atml_debug_intel' [26:42, 05:00] ( 881 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [21:11, 03:30](2301 MB) + +PASS -- COMPILE 'atmw_intel' [29:44, 08:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:23, 03:19](1999 MB) + +PASS -- COMPILE 'atmaero_intel' [16:31, 08:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [20:17, 03:01](3285 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [20:17, 03:15](3055 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:02, 02:38](3067 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [25:39, 04:25] ( 883 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [10:12, 02:45](4849 MB) SYNOPSIS: -Starting Date/Time: 20240905 17:49:41 -Ending Date/Time: 20240905 19:58:02 -Total Time: 02h:08m:47s +Starting Date/Time: 20240912 20:05:48 +Ending Date/Time: 20240912 22:17:39 +Total Time: 02h:12m:18s Compiles Completed: 37/37 Tests Completed: 176/176 From 740f191e721e7ab73b7aecefdee8190d445a9f60 Mon Sep 17 00:00:00 2001 From: zach1221 Date: Fri, 13 Sep 2024 06:36:17 -0600 Subject: [PATCH 27/27] add derecho RT logs: passed --- tests/logs/RegressionTests_derecho.log | 544 ++++++++++++------------- 1 file changed, 272 insertions(+), 272 deletions(-) diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 39735c2292..cca2f3ec7d 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: -09b868ff72fac6a029564ad640cb24311ec74865 +533e855dac5381cf818b39179344afcacd8f9d47 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -21,7 +21,7 @@ Submodule hashes used in testing: -567edcc94bc418d0dcd6cdaafed448eeb5aab570 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - e4df8469598a250f0681a94943cd6c9fef86c326 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10229-ge4df84695) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) @@ -35,284 +35,284 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240904 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_20365 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_47350 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [25:53, 25:13] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:43, 06:15](3205 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [34:01, 27:17] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:38, 15:04](1916 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:10, 16:33](1945 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:11, 08:36](1072 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:31, 17:12](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [33:04, 27:10] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:06, 14:49](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:54, 15:10] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 23:23](1940 MB) - -PASS -- COMPILE 's2swa_intel' [33:04, 24:24] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:26, 06:52](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:39, 06:50](3218 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:01, 04:30](3150 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:39, 06:58](3255 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:53, 04:29](3177 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:58, 06:23](3730 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:31, 06:41](3216 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:46, 05:48](3537 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:21, 06:59](3229 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:35, 10:17](3819 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [18:23, 07:17](3624 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [54:07, 11:25](4516 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [40:08, 08:29](4669 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:25, 06:29](3216 MB) - -PASS -- COMPILE 's2sw_intel' [31:58, 23:18] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:10, 05:12](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:23, 05:22](1983 MB) - -PASS -- COMPILE 's2swa_debug_intel' [24:04, 15:16] ( 1453 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:33, 08:43](3302 MB) - -PASS -- COMPILE 's2sw_debug_intel' [25:57, 14:29] ( 1453 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:17, 06:22](1964 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [31:59, 19:43] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:24, 05:28](1992 MB) - -PASS -- COMPILE 's2s_intel' [31:05, 19:20] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:35, 07:13](2879 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:37, 02:59](2893 MB) -PASS -- TEST 'cpld_restart_c48_intel' [10:05, 02:22](2300 MB) - -PASS -- COMPILE 's2swa_faster_intel' [30:22, 28:21] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:21, 06:43](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [28:26, 25:37] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:14, 15:07](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:38, 08:48](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:16, 17:11](1895 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:23, 14:15] ( 1563 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:38, 24:34](1955 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [20:18, 16:21] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:01, 03:29](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:07, 02:36](1560 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:28, 02:39](1561 MB) -PASS -- TEST 'control_latlon_intel' [10:10, 02:29](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:08, 02:35](1569 MB) -PASS -- TEST 'control_c48_intel' [30:17, 06:11](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [28:02, 05:21](709 MB) -PASS -- TEST 'control_c192_intel' [20:33, 08:54](1674 MB) -PASS -- TEST 'control_c384_intel' [22:49, 09:08](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [28:11, 07:35](1180 MB) -PASS -- TEST 'control_stochy_intel' [06:02, 01:32](622 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:51, 00:56](433 MB) -PASS -- TEST 'control_lndp_intel' [04:52, 01:28](621 MB) -PASS -- TEST 'control_iovr4_intel' [06:02, 02:12](620 MB) -PASS -- TEST 'control_iovr5_intel' [04:56, 02:28](619 MB) -PASS -- TEST 'control_p8_intel' [08:33, 03:37](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:33, 03:17](1852 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:56, 03:33](1853 MB) -PASS -- TEST 'control_restart_p8_intel' [08:47, 02:26](1002 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:27, 03:24](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:46, 02:19](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:38, 03:32](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [12:42, 03:29](1925 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:43, 05:27](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:49, 04:21](1909 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:39, 03:23](1861 MB) -PASS -- TEST 'merra2_thompson_intel' [12:07, 03:43](1864 MB) -PASS -- TEST 'regional_control_intel' [08:01, 05:21](854 MB) -PASS -- TEST 'regional_restart_intel' [11:02, 03:20](856 MB) -PASS -- TEST 'regional_decomp_intel' [09:13, 05:44](866 MB) -PASS -- TEST 'regional_noquilt_intel' [12:05, 05:15](1180 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:09, 05:19](860 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:15, 05:16](855 MB) -PASS -- TEST 'regional_wofs_intel' [10:08, 05:46](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [17:23, 14:52] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:23, 06:17](1004 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:32, 03:55](1145 MB) -PASS -- TEST 'rap_decomp_intel' [11:46, 06:31](1010 MB) -PASS -- TEST 'rap_2threads_intel' [09:34, 05:50](1088 MB) -PASS -- TEST 'rap_restart_intel' [06:39, 03:21](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:37, 06:13](1001 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:47, 06:30](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 04:42](878 MB) -PASS -- TEST 'hrrr_control_intel' [06:47, 03:21](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:39, 03:27](996 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:35, 02:55](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:04, 01:53](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:44, 06:10](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:06, 07:33](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:04, 07:19](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [16:21, 13:57] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:38, 06:56](960 MB) -PASS -- TEST 'control_ras_intel' [05:52, 03:02](657 MB) - -PASS -- COMPILE 'wam_intel' [15:18, 13:06] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:42, 10:26](1643 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:22, 14:02] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:07, 03:23](1853 MB) -PASS -- TEST 'regional_control_faster_intel' [08:05, 05:17](861 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [19:18, 16:28] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:30, 02:42](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:34, 02:38](1605 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:00, 03:01](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:56, 02:41](810 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:46, 04:53](1112 MB) -PASS -- TEST 'control_ras_debug_intel' [06:01, 02:52](815 MB) -PASS -- TEST 'control_diag_debug_intel' [08:01, 02:44](1665 MB) -PASS -- TEST 'control_debug_p8_intel' [06:23, 03:32](1905 MB) -PASS -- TEST 'regional_debug_intel' [20:23, 16:46](922 MB) -PASS -- TEST 'rap_control_debug_intel' [07:53, 04:47](1190 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:58, 04:52](1188 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:50, 04:57](1193 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:51, 04:58](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:04, 04:52](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:42, 05:07](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:05, 05:00](1188 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:01, 05:00](1192 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:03, 04:51](1198 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:54, 04:53](1191 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:55, 04:48](1185 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:50, 04:51](1191 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:47, 07:44](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:48, 04:49](1187 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:54, 05:37](1196 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:59, 04:55](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 08:26](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [26:26, 09:17] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:18, 12:34](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:20, 13:26] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:50, 03:50](1022 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:35, 05:16](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:33, 02:51](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 04:53](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:32, 02:34](925 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:26, 03:01](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:23, 04:02](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:56, 01:39](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:22, 12:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:04, 02:08](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:46, 01:09](1073 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:49, 01:15](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:25, 13:12] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:33, 03:46](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:24, 09:40] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:55, 04:45](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:01, 04:39](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [19:31, 13:54](1147 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:34, 13:47](830 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:58, 08:08](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:09, 13:50](1213 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [30:28, 09:22] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:50, 04:50](1095 MB) - -PASS -- COMPILE 'hafsw_intel' [42:26, 20:38] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:14, 04:56](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:22, 05:51](1052 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:35, 06:53](750 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 11:19](776 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:37, 12:27](794 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:30, 04:52](467 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:03, 06:02](481 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:32, 02:32](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:20, 06:32](455 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:20, 03:30](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:46, 03:18](504 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:44, 04:09](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:44, 01:28](421 MB) -PASS -- TEST 'gnv1_nested_intel' [11:24, 04:43](1709 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [32:22, 11:03] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:26, 12:26](619 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [37:30, 19:18] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:08, 07:28](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:38, 07:31](680 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [39:33, 21:04] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:14, 05:33](670 MB) - -PASS -- COMPILE 'hafs_all_intel' [29:21, 18:30] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:11, 06:01](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 06:04](726 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:48, 16:27](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:16, 11:13] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:49, 02:33](767 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:06, 01:37](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:51, 02:24](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:52, 02:29](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:51, 02:32](651 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:00, 02:35](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:52, 02:36](770 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:49, 02:27](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:49, 05:58](696 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [16:48, 05:53](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:30, 02:35](766 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:57, 04:10](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:51, 04:08](2034 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:15, 07:48] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:51, 05:15](739 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:20, 10:32] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:46, 02:35](767 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 03:31] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:32, 01:36](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:32, 01:31](457 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:35, 01:00](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:23, 15:44] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [12:15, 04:18](1908 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:22, 14:42] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:40, 04:06](1903 MB) - -PASS -- COMPILE 'atml_intel' [18:17, 16:38] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:54, 09:55](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [15:25, 09:07](1891 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:34, 04:54](1036 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:20, 12:34] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:07, 06:47](1926 MB) - -PASS -- COMPILE 'atmw_intel' [18:21, 15:26] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:02, 02:31](1875 MB) - -PASS -- COMPILE 'atmaero_intel' [33:24, 15:42] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:11, 04:49](3130 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:09, 04:27](3002 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:34, 04:33](3014 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [29:27, 10:38] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:42, 22:55](4541 MB) +PASS -- COMPILE 's2swa_32bit_intel' [26:22, 24:08] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:26, 06:52](3197 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:29, 25:57] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:31, 15:09](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:06, 16:23](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:56, 08:19](1063 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:29, 17:04](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [28:29, 25:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:59, 14:44](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:20, 14:19] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:46, 24:11](1939 MB) + +PASS -- COMPILE 's2swa_intel' [26:30, 23:36] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:32, 08:33](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:58, 08:39](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:48, 05:17](3150 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:21, 08:35](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:54, 05:12](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:02, 07:55](3744 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:46, 08:17](3214 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:04, 07:04](3533 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:54, 08:45](3228 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [27:04, 10:11](3817 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:46, 07:06](3616 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [41:50, 10:30](4515 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:03, 07:19](4666 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:36, 06:04](3213 MB) + +PASS -- COMPILE 's2sw_intel' [23:25, 21:13] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:02, 05:59](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:14, 08:24](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:24, 13:54] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:34, 13:26](3306 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:23, 13:10] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:21, 09:05](1947 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [20:29, 18:05] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:26, 05:03](1987 MB) + +PASS -- COMPILE 's2s_intel' [21:25, 18:18] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:27, 06:04](2880 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:29, 02:48](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:39, 02:04](2306 MB) + +PASS -- COMPILE 's2swa_faster_intel' [28:28, 25:54] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:49, 08:24](3233 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:18, 23:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 15:11](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:27, 08:32](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 16:55](1890 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:16, 13:00] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:04, 24:40](1949 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:21, 15:20] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:48, 03:32](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:25, 02:53](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:43, 02:51](1568 MB) +PASS -- TEST 'control_latlon_intel' [07:24, 02:47](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:25, 02:47](1566 MB) +PASS -- TEST 'control_c48_intel' [48:40, 09:18](1587 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [43:50, 05:17](709 MB) +PASS -- TEST 'control_c192_intel' [15:34, 10:06](1695 MB) +PASS -- TEST 'control_c384_intel' [22:46, 11:33](1973 MB) +PASS -- TEST 'control_c384gdas_intel' [21:50, 07:24](1174 MB) +PASS -- TEST 'control_stochy_intel' [06:02, 01:30](623 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:53, 00:53](437 MB) +PASS -- TEST 'control_lndp_intel' [06:01, 01:29](621 MB) +PASS -- TEST 'control_iovr4_intel' [06:08, 02:11](619 MB) +PASS -- TEST 'control_iovr5_intel' [06:07, 02:10](621 MB) +PASS -- TEST 'control_p8_intel' [07:46, 03:47](1851 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:46, 03:28](1849 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:04, 03:59](1856 MB) +PASS -- TEST 'control_restart_p8_intel' [09:46, 02:39](1002 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:41, 03:50](1848 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:40, 02:33](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:43, 03:49](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:45, 03:48](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:29, 06:14](1862 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:47, 04:15](1904 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:59, 03:35](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [12:48, 03:48](1856 MB) +PASS -- TEST 'regional_control_intel' [09:09, 05:22](860 MB) +PASS -- TEST 'regional_restart_intel' [26:07, 03:15](860 MB) +PASS -- TEST 'regional_decomp_intel' [10:06, 05:25](860 MB) +PASS -- TEST 'regional_noquilt_intel' [36:11, 04:58](1183 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:04, 05:08](854 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [33:00, 05:04](859 MB) +PASS -- TEST 'regional_wofs_intel' [34:08, 05:47](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [16:23, 13:53] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:34, 06:11](1007 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:34, 03:54](1158 MB) +PASS -- TEST 'rap_decomp_intel' [10:23, 06:29](1006 MB) +PASS -- TEST 'rap_2threads_intel' [09:31, 05:47](1093 MB) +PASS -- TEST 'rap_restart_intel' [08:24, 03:18](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:13, 06:08](1001 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:26, 06:28](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 04:40](879 MB) +PASS -- TEST 'hrrr_control_intel' [06:27, 03:16](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:27, 03:21](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [17:29, 02:50](1074 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:01, 01:50](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:23, 06:03](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:53, 07:30](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:45, 07:13](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [16:24, 12:45] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [12:10, 06:37](959 MB) +PASS -- TEST 'control_ras_intel' [07:40, 02:54](656 MB) + +PASS -- COMPILE 'wam_intel' [15:16, 12:30] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:23, 10:23](1652 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:18, 13:05] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:45, 03:10](1853 MB) +PASS -- TEST 'regional_control_faster_intel' [22:09, 05:06](858 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [26:23, 15:56] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:12, 02:15](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:10, 02:11](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:44, 02:57](809 MB) +PASS -- TEST 'control_lndp_debug_intel' [09:44, 02:38](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:15, 04:43](1115 MB) +PASS -- TEST 'control_ras_debug_intel' [06:36, 02:42](815 MB) +PASS -- TEST 'control_diag_debug_intel' [07:04, 02:41](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [05:59, 03:02](1902 MB) +PASS -- TEST 'regional_debug_intel' [26:59, 16:37](917 MB) +PASS -- TEST 'rap_control_debug_intel' [07:45, 04:46](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:39, 04:39](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:33, 04:43](1193 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:50, 04:48](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:42, 04:45](1193 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:37, 04:59](1271 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:40, 04:58](1187 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:46, 04:53](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:43, 04:49](1195 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:40, 04:47](1189 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:41, 04:46](1186 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:36, 04:53](1190 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:50, 07:33](1189 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:36, 04:49](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:47, 05:33](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:42, 04:55](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:36, 08:07](1191 MB) + +PASS -- COMPILE 'wam_debug_intel' [24:22, 08:07] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:07, 12:19](1683 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [25:22, 12:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:54, 03:43](1020 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:16, 05:12](877 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:25, 02:50](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:24, 04:51](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:14, 02:30](930 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:15, 02:58](874 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:27, 03:59](787 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:49, 01:35](770 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:23, 12:05] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:00, 01:59](1073 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:05, 01:10](1073 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [14:14, 01:12](961 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:22, 12:21] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:17, 03:40](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [45:29, 08:10] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:41, 04:42](1071 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:53, 04:29](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [26:14, 13:49](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:13, 13:47](829 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:57, 07:59](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:05, 13:44](1213 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [43:30, 07:53] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:46, 04:45](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [53:31, 18:32] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:37, 04:53](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:41, 05:32](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:57, 06:41](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:52, 11:17](774 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:10, 12:25](799 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:35, 04:47](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:48, 05:54](481 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:18, 02:34](387 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:37, 06:29](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:27, 03:35](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:25, 03:17](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:36, 04:11](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:43, 01:26](422 MB) +PASS -- TEST 'gnv1_nested_intel' [22:11, 04:37](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [43:29, 09:31] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:47, 12:26](618 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [51:26, 18:11] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:44, 07:27](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:11, 07:30](679 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [43:21, 19:34] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:29, 05:34](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:19, 16:40] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:59, 05:55](741 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:56, 05:55](726 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:25, 16:15](897 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [29:18, 09:14] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [14:36, 02:33](768 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [49:31, 01:42](744 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [20:39, 02:25](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:32, 02:32](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 02:31](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [16:43, 02:33](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:57, 02:35](767 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:22, 02:25](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:41, 05:50](697 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:03, 05:48](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [15:30, 02:33](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:36, 04:06](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [16:01, 04:03](2035 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [25:17, 06:42] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:39, 05:14](750 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [28:18, 09:12] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:20, 02:34](755 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [18:07, 03:58] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:52, 01:43](679 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:50, 01:35](457 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:39, 01:00](679 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [29:20, 16:26] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:38, 04:20](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [28:24, 15:00] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:34, 04:23](1895 MB) + +PASS -- COMPILE 'atml_intel' [30:19, 17:01] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:11, 08:51](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [14:13, 08:44](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:34, 04:47](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [26:18, 13:28] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:20, 06:59](1932 MB) + +PASS -- COMPILE 'atmw_intel' [29:16, 16:08] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:06, 02:51](1872 MB) + +PASS -- COMPILE 'atmaero_intel' [23:11, 15:03] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [13:17, 04:53](3127 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:18, 04:30](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:44, 04:45](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [17:23, 10:44] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [30:57, 23:04](4543 MB) SYNOPSIS: -Starting Date/Time: 20240906 11:12:54 -Ending Date/Time: 20240906 15:44:31 -Total Time: 04h:33m:46s +Starting Date/Time: 20240912 08:28:20 +Ending Date/Time: 20240912 21:54:28 +Total Time: 13h:28m:09s Compiles Completed: 41/41 Tests Completed: 184/184