From b968b96df1fb78917b49e74ecd486d7a2c20ed71 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 2 Oct 2024 13:46:28 -0400 Subject: [PATCH 01/28] initial testing to get UFSWM working on Gaea C6 --- modulefiles/ufs_gaeac6.intel.lua | 33 +++++++++++++ tests/compile.sh | 3 ++ tests/default_vars.sh | 2 +- tests/detect_machine.sh | 2 + tests/fv3_conf/compile_slurm.IN_gaeac6 | 22 +++++++++ tests/fv3_conf/fv3_slurm.IN_gaeac6 | 45 +++++++++++++++++ tests/logs/RegressionTests_gaeac6.log | 68 ++++++++++++++++++++++++++ tests/module-setup.sh | 7 ++- tests/rt.sh | 35 +++++++++++++ tests/rt_utils.sh | 7 ++- tests/run_test.sh | 7 ++- 11 files changed, 226 insertions(+), 5 deletions(-) create mode 100644 modulefiles/ufs_gaeac6.intel.lua create mode 100644 tests/fv3_conf/compile_slurm.IN_gaeac6 create mode 100644 tests/fv3_conf/fv3_slurm.IN_gaeac6 create mode 100644 tests/logs/RegressionTests_gaeac6.log diff --git a/modulefiles/ufs_gaeac6.intel.lua b/modulefiles/ufs_gaeac6.intel.lua new file mode 100644 index 0000000000..9ae1d14e2d --- /dev/null +++ b/modulefiles/ufs_gaeac6.intel.lua @@ -0,0 +1,33 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) + +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.29" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("ufs_common") + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +unload("darshan-runtime") +unload("cray-libsci") + +setenv("CC","cc") +setenv("CXX","CC") +setenv("FC","ftn") +setenv("CMAKE_Platform","gaea.intel") diff --git a/tests/compile.sh b/tests/compile.sh index 8ab0f60b82..2edd7ad73c 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -64,6 +64,9 @@ case ${MACHINE_ID} in if [[ ${MACHINE_ID} == gaea ]]; then module reset fi + if [[ ${MACHINE_ID} == gaeac6 ]]; then + module reset + fi # Load fv3 module module use "${PATHTR}/modulefiles" modulefile="ufs_${MACHINE_ID}.${RT_COMPILER}" diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 9a8eb118ed..59d02d1995 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -300,7 +300,7 @@ elif [[ ${MACHINE_ID} = s4 ]]; then export ICE_tasks_cpl_bmrk=48 export WAV_tasks_cpl_bmrk=80 -elif [[ ${MACHINE_ID} = gaea ]]; then +elif [[ ${MACHINE_ID} = gaea || ${MACHINE_ID} = gaeac6 ]]; then export TPN=128 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 0bd0535d8a..30c173c201 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -23,6 +23,8 @@ case $(hostname -f) in gaea5[1-8]) MACHINE_ID=gaea ;; ### gaea51-58 gaea5[1-8].ncrc.gov) MACHINE_ID=gaea ;; ### gaea51-58 + gaea6[1-8]) MACHINE_ID=gaeac6 ;; ### gaea61-58 + gaea6[1-8].ncrc.gov) MACHINE_ID=gaeac6 ;; ### gaea61-58 hfe0[1-9]) MACHINE_ID=hera ;; ### hera01-09 hfe1[0-2]) MACHINE_ID=hera ;; ### hera10-12 diff --git a/tests/fv3_conf/compile_slurm.IN_gaeac6 b/tests/fv3_conf/compile_slurm.IN_gaeac6 new file mode 100644 index 0000000000..9f5bf9c304 --- /dev/null +++ b/tests/fv3_conf/compile_slurm.IN_gaeac6 @@ -0,0 +1,22 @@ +#!/bin/bash -l +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +##SBATCH --qos=@[QUEUE] +#SBATCH --clusters=es +#SBATCH --partition=eslogin_c6 +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --mem-per-cpu=4G +#SBATCH --time=180 +#SBATCH --job-name="@[JBNME]" + +set -eux + +echo -n " $( date +%s )," > job_timestamp.txt +echo "Compile started: " `date` + +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] + +echo "Compile ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_gaeac6 b/tests/fv3_conf/fv3_slurm.IN_gaeac6 new file mode 100644 index 0000000000..97cb7049de --- /dev/null +++ b/tests/fv3_conf/fv3_slurm.IN_gaeac6 @@ -0,0 +1,45 @@ +#!/bin/bash -l +#SBATCH -e err +#SBATCH -o out +#SBATCH --job-name="@[JBNME]" +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --clusters=c6 +#SBATCH --partition=batch +#SBATCH --nodes=@[NODES] +#SBATCH --ntasks-per-node=@[TPN] +#SBATCH --time=@[WLCLK] + +set -eux +echo -n " $( date +%s )," > job_timestamp.txt + +set +x +MACHINE_ID=gaeac6 +source ./module-setup.sh +module use --prepend $PWD/modulefiles +module load modules.fv3 +module list +set -x + +echo "Model started: " `date` + +export OMP_NUM_THREADS=@[THRD] +export OMP_STACKSIZE=1024M +export NC_BLKSZ=1M +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" + +# Avoid job errors because of filesystem synchronization delays +sync && sleep 1 + +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + +srun --label -n @[TASKS] ./fv3.exe + +echo "Model ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log new file mode 100644 index 0000000000..2b68a558ab --- /dev/null +++ b/tests/logs/RegressionTests_gaeac6.log @@ -0,0 +1,68 @@ +====START OF GAEAC6 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +2ccc549348da37aac51ab44482174dff2bb2912d + +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) + 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) + 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + a9364591091c836984a40107729720705847c195 FV3 (heads/develop) + ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 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) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + 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/f6/drsa-fire2/world-shared/Brian.Curtis/NEMSfv3gfs/develop-20240909 +COMPARISON DIRECTORY: /gpfs/f6/drsa-fire2/scratch/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_2186049 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: drsa-fire2 +* (-c) - CREATE NEW BASELINES +* (-n) - RUN SINGLE TEST: cpld_control_p8 +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_intel' [09:12, 08:08] ( 6 warnings 10 remarks ) +FAILED: TEST TIMED OUT -- TEST 'cpld_control_p8_intel' [, ]( MB) + +SYNOPSIS: +Starting Date/Time: 20241002 11:56:43 +Ending Date/Time: 20241002 13:19:28 +Total Time: 01h:23m:40s +Compiles Completed: 1/1 +Tests Completed: 0/1 +Failed Tests: +* TEST cpld_control_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /gpfs/f6/drsa-fire2/scratch/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_2186049/cpld_control_p8_intel/err + +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 GAEAC6 REGRESSION TESTING LOG==== diff --git a/tests/module-setup.sh b/tests/module-setup.sh index cd606178f6..552e7afd0f 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -76,7 +76,12 @@ elif [[ ${MACHINE_ID} = gaea ]] ; then source /etc/profile fi module reset - +elif [[ ${MACHINE_ID} = gaeac6 ]]; then + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /opt/cray/pe/lmod/lmod/init/bash + fi + module purge + elif [[ ${MACHINE_ID} = expanse ]]; then # We are on SDSC Expanse if ( ! eval module help > /dev/null 2>&1 ) ; then diff --git a/tests/rt.sh b/tests/rt.sh index fd8976c10c..76f5864a34 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -739,6 +739,41 @@ case ${MACHINE_ID} in STMP=${STMP:-${dprefix}/RT_BASELINE} PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} + SCHEDULER="slurm" + ;; + gaeac6) + echo "rt.sh: Setting up gaeac6..." + if [[ "${ROCOTO:-false}" == true ]] ; then + # module use /ncrc/proj/epic/rocoto/modulefiles + module load rocoto + ROCOTO_SCHEDULER="slurm" + fi + + export LD_PRELOAD=/usr/lib64/libstdc++.so.6 + module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core + #module load PrgEnv-intel/8.5.0 + module load stack-intel/2023.2.0 + #module load cray-mpich/8.1.29 + module load python/3.10.13 + module use /ncrc/proj/epic/spack-stack/modulefiles + #module load gcc-native/12.3 + if [[ "${ECFLOW:-false}" == true ]] ; then + #module load ecflow/5.8.4 + module load ecflow + ECF_HOST=$(hostname) + ECF_PORT=$(( $(id -u) + 1500 )) + export ECF_PORT ECF_HOST + fi + + #DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT + DISKNM=/gpfs/f6/drsa-fire2/world-shared/Brian.Curtis + QUEUE=normal + COMPILE_QUEUE=normal + PARTITION=c6 + dprefix=${dprefix:-/gpfs/f6/${ACCNR}/scratch/${USER}} + STMP=${STMP:-${dprefix}/RT_BASELINE} + PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} + SCHEDULER="slurm" ;; hera) diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 86df50569f..4b8ba99d9c 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -312,6 +312,9 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == gaea ]]; then BUILD_WALLTIME="01:00:00" fi + if [[ ${MACHINE_ID} == gaeac6 ]]; then + BUILD_WALLTIME="01:00:00" + fi cat << EOF >> "${ROCOTO_XML}" @@ -322,7 +325,7 @@ rocoto_create_compile_task() { ${COMPILE_QUEUE} EOF - if [[ "${MACHINE_ID}" == gaea ]] ; then + if [[ "${MACHINE_ID}" == gaea || "${MACHINE_ID}" == gaeac6 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=es eslogin_c5 @@ -366,7 +369,7 @@ rocoto_create_run_task() { ${ROCOTO_NODESIZE:+${ROCOTO_NODESIZE}} EOF - if [[ "${MACHINE_ID}" == gaea ]] ; then + if [[ "${MACHINE_ID}" == gaea || "${MACHINE_ID}" == gaeac6 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=${PARTITION} --partition=batch diff --git a/tests/run_test.sh b/tests/run_test.sh index 8f5c0a02bf..7d51c3e85e 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -121,6 +121,11 @@ case ${MACHINE_ID} in module load modules.fv3 module load gcc/12.2.0 ;; + gaeac6) + module use modulefiles + module load modules.fv3 + module load gcc-native/12.3 + ;; derecho) module load nccmp ;; @@ -441,7 +446,7 @@ if [[ ${skip_check_results} == false ]]; then else if [[ ${i##*.} == nc* ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then + if [[ " orion hercules hera wcoss2 acorn derecho gaea gaeac6 jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then printf "USING NCCMP.." >> "${RT_LOG}" printf "USING NCCMP.." if [[ ${CMP_DATAONLY} == false ]]; then From 747683751c6948b87681a5eae6b145fdb8f491e3 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 4 Oct 2024 08:53:36 -0400 Subject: [PATCH 02/28] gaea->gaea-c5 and gaeac6->gaea-c6 --- ...s_gaea.intel.lua => ufs_gaea-c5.intel.lua} | 2 +- ...gaeac6.intel.lua => ufs_gaea-c6.intel.lua} | 4 ++-- tests/compile.sh | 6 ++--- tests/default_vars.sh | 22 ++++++++++++++++++- tests/detect_machine.sh | 17 ++++++++------ ...slurm.IN_gaea => compile_slurm.IN_gaea-c5} | 0 ...urm.IN_gaeac6 => compile_slurm.IN_gaea-c6} | 0 ...fv3_slurm.IN_gaea => fv3_slurm.IN_gaea-c5} | 0 ...3_slurm.IN_gaeac6 => fv3_slurm.IN_gaea-c6} | 0 tests/module-setup.sh | 4 ++-- tests/rt.sh | 8 +++---- tests/rt_utils.sh | 8 +++---- tests/run_test.sh | 6 ++--- 13 files changed, 50 insertions(+), 27 deletions(-) rename modulefiles/{ufs_gaea.intel.lua => ufs_gaea-c5.intel.lua} (97%) rename modulefiles/{ufs_gaeac6.intel.lua => ufs_gaea-c6.intel.lua} (92%) rename tests/fv3_conf/{compile_slurm.IN_gaea => compile_slurm.IN_gaea-c5} (100%) rename tests/fv3_conf/{compile_slurm.IN_gaeac6 => compile_slurm.IN_gaea-c6} (100%) rename tests/fv3_conf/{fv3_slurm.IN_gaea => fv3_slurm.IN_gaea-c5} (100%) rename tests/fv3_conf/{fv3_slurm.IN_gaeac6 => fv3_slurm.IN_gaea-c6} (100%) diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea-c5.intel.lua similarity index 97% rename from modulefiles/ufs_gaea.intel.lua rename to modulefiles/ufs_gaea-c5.intel.lua index 592eb7461d..2197c1542c 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea-c5.intel.lua @@ -3,7 +3,7 @@ help([[ on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. ]]) -whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5]===]) prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") diff --git a/modulefiles/ufs_gaeac6.intel.lua b/modulefiles/ufs_gaea-c6.intel.lua similarity index 92% rename from modulefiles/ufs_gaeac6.intel.lua rename to modulefiles/ufs_gaea-c6.intel.lua index 9ae1d14e2d..316ce7172f 100644 --- a/modulefiles/ufs_gaeac6.intel.lua +++ b/modulefiles/ufs_gaea-c6.intel.lua @@ -1,9 +1,9 @@ help([[ This module loads libraries required for building and running UFS Weather Model - on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. + on the NOAA RDHPC machine Gaea C6 using Intel-2023.2.0. ]]) -whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C6]===]) prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") diff --git a/tests/compile.sh b/tests/compile.sh index e77e14fc47..065193d3fd 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -61,10 +61,10 @@ case ${MACHINE_ID} in ;; *) # Activate lua environment for gaea c5 - if [[ ${MACHINE_ID} == gaea ]]; then + if [[ ${MACHINE_ID} == gaea-c5 ]]; then module reset fi - if [[ ${MACHINE_ID} == gaeac6 ]]; then + if [[ ${MACHINE_ID} == gaea-c6 ]]; then module reset fi # Load fv3 module @@ -98,7 +98,7 @@ export SUITES set -ex # Valid applications -if [[ ${MACHINE_ID} != gaea ]] || [[ ${RT_COMPILER} != intelllvm ]]; then # skip MOM6SOLO on gaea with intelllvm +if [[ ${MACHINE_ID} != gaea-c5 || ${MACHINE_ID} != gaea-c6 ]] || [[ ${RT_COMPILER} != intelllvm ]]; then # skip MOM6SOLO on gaea with intelllvm if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then CMAKE_FLAGS+=" -DMOM6SOLO=ON" fi diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 59d02d1995..789f647efb 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -300,7 +300,7 @@ elif [[ ${MACHINE_ID} = s4 ]]; then export ICE_tasks_cpl_bmrk=48 export WAV_tasks_cpl_bmrk=80 -elif [[ ${MACHINE_ID} = gaea || ${MACHINE_ID} = gaeac6 ]]; then +elif [[ ${MACHINE_ID} = gaea-c5 ]]; then export TPN=128 @@ -321,6 +321,26 @@ elif [[ ${MACHINE_ID} = gaea || ${MACHINE_ID} = gaeac6 ]]; then export WPG_cpl_atmw_gdas=24 export WAV_tasks_atmw_gdas=264 +elif [[ ${MACHINE_ID} = gaea-c6 ]]; then + + export TPN=128 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=8 + export THRD_c384=1 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=3 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=264 elif [[ ${MACHINE_ID} = derecho ]]; then export TPN=128 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 30c173c201..80ceac9269 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -21,10 +21,10 @@ case $(hostname -f) in dlogin0[1-9].dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood01-9 dlogin10.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood10 - gaea5[1-8]) MACHINE_ID=gaea ;; ### gaea51-58 - gaea5[1-8].ncrc.gov) MACHINE_ID=gaea ;; ### gaea51-58 - gaea6[1-8]) MACHINE_ID=gaeac6 ;; ### gaea61-58 - gaea6[1-8].ncrc.gov) MACHINE_ID=gaeac6 ;; ### gaea61-58 + gaea5[1-8]) MACHINE_ID=gaea-c5 ;; ### gaea51-58 + gaea5[1-8].ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea51-58 + gaea6[1-8]) MACHINE_ID=gaea-c6 ;; ### gaea61-58 + gaea6[1-8].ncrc.gov) MACHINE_ID=gaea-c6 ;; ### gaea61-58 hfe0[1-9]) MACHINE_ID=hera ;; ### hera01-09 hfe1[0-2]) MACHINE_ID=hera ;; ### hera10-12 @@ -96,9 +96,12 @@ elif [[ -d /work ]]; then else MACHINE_ID=orion fi -elif [[ -d /gpfs && -d /ncrc ]]; then - # We are on GAEA. - MACHINE_ID=gaea +elif [[ -d /gpfs/f5 && -d /ncrc ]]; then + # We are on GAEA C5. + MACHINE_ID=gaea-c5 +elif [[ -d /gpfs/f6 && -d /ncrc ]]; then + # We are on GAEA C6. + MACHINE_ID=gaea-c6 elif [[ -d /data/prod ]]; then # We are on SSEC's S4 MACHINE_ID=s4 diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea-c5 similarity index 100% rename from tests/fv3_conf/compile_slurm.IN_gaea rename to tests/fv3_conf/compile_slurm.IN_gaea-c5 diff --git a/tests/fv3_conf/compile_slurm.IN_gaeac6 b/tests/fv3_conf/compile_slurm.IN_gaea-c6 similarity index 100% rename from tests/fv3_conf/compile_slurm.IN_gaeac6 rename to tests/fv3_conf/compile_slurm.IN_gaea-c6 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea-c5 similarity index 100% rename from tests/fv3_conf/fv3_slurm.IN_gaea rename to tests/fv3_conf/fv3_slurm.IN_gaea-c5 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaeac6 b/tests/fv3_conf/fv3_slurm.IN_gaea-c6 similarity index 100% rename from tests/fv3_conf/fv3_slurm.IN_gaeac6 rename to tests/fv3_conf/fv3_slurm.IN_gaea-c6 diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 552e7afd0f..c1bddc7811 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -65,7 +65,7 @@ elif [[ ${MACHINE_ID} = frontera ]] ; then fi module purge -elif [[ ${MACHINE_ID} = gaea ]] ; then +elif [[ ${MACHINE_ID} = gaea-c5 ]] ; then # We are on GAEA if ( ! eval module help > /dev/null 2>&1 ) ; then # We cannot simply load the module command. The GAEA @@ -76,7 +76,7 @@ elif [[ ${MACHINE_ID} = gaea ]] ; then source /etc/profile fi module reset -elif [[ ${MACHINE_ID} = gaeac6 ]]; then +elif [[ ${MACHINE_ID} = gaea-c6 ]]; then if ( ! eval module help > /dev/null 2>&1 ) ; then source /opt/cray/pe/lmod/lmod/init/bash fi diff --git a/tests/rt.sh b/tests/rt.sh index fe50da7a21..d7fba413a8 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -709,8 +709,8 @@ case ${MACHINE_ID} in PTMP="/lfs/h2/emc/ptmp" SCHEDULER="pbs" ;; - gaea) - echo "rt.sh: Setting up gaea..." + gaea-c5) + echo "rt.sh: Setting up gaea-c5..." if [[ "${ROCOTO:-false}" == true ]] ; then module use /ncrc/proj/epic/rocoto/modulefiles module load rocoto @@ -741,8 +741,8 @@ case ${MACHINE_ID} in SCHEDULER="slurm" ;; - gaeac6) - echo "rt.sh: Setting up gaeac6..." + gaea-c6) + echo "rt.sh: Setting up gaea-c6..." if [[ "${ROCOTO:-false}" == true ]] ; then # module use /ncrc/proj/epic/rocoto/modulefiles module load rocoto diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index e92f029d10..e6ac8add39 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -309,10 +309,10 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == s4 ]]; then BUILD_WALLTIME="01:00:00" fi - if [[ ${MACHINE_ID} == gaea ]]; then + if [[ ${MACHINE_ID} == gaea-c5 ]]; then BUILD_WALLTIME="01:00:00" fi - if [[ ${MACHINE_ID} == gaeac6 ]]; then + if [[ ${MACHINE_ID} == gaea-c6 ]]; then BUILD_WALLTIME="01:00:00" fi @@ -325,7 +325,7 @@ rocoto_create_compile_task() { ${COMPILE_QUEUE} EOF - if [[ "${MACHINE_ID}" == gaea || "${MACHINE_ID}" == gaeac6 ]] ; then + if [[ "${MACHINE_ID}" == gaea-c5 || "${MACHINE_ID}" == gaea-c6 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=es eslogin_c5 @@ -369,7 +369,7 @@ rocoto_create_run_task() { ${ROCOTO_NODESIZE:+${ROCOTO_NODESIZE}} EOF - if [[ "${MACHINE_ID}" == gaea || "${MACHINE_ID}" == gaeac6 ]] ; then + if [[ "${MACHINE_ID}" == gaea-c5 || "${MACHINE_ID}" == gaea-c6 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=${PARTITION} --partition=batch diff --git a/tests/run_test.sh b/tests/run_test.sh index 2c69f1ea10..cc0b5fcd14 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -116,12 +116,12 @@ case ${MACHINE_ID} in stampede|expanse|noaacloud) echo "No special nccmp load necessary" ;; - gaea) + gaea-c5) module use /ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core module load stack-intel/2023.1.0 stack-cray-mpich/8.1.25 module load nccmp/1.9.0.1 ;; - gaeac6) + gaea-c6) module use modulefiles module load modules.fv3 module load gcc-native/12.3 @@ -446,7 +446,7 @@ if [[ ${skip_check_results} == false ]]; then else if [[ ${i##*.} == nc* ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaea gaeac6 jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then + if [[ " orion hercules hera wcoss2 acorn derecho gaea-c5 gaea-c6 jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then printf "USING NCCMP.." >> "${RT_LOG}" printf "USING NCCMP.." if [[ ${CMP_DATAONLY} == false ]]; then From 742a7c21cd41ae29a0525743578b89bba9a3a29a Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 4 Oct 2024 08:57:34 -0400 Subject: [PATCH 03/28] Fixed linter issue --- tests/compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/compile.sh b/tests/compile.sh index 065193d3fd..2c3c7796be 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -98,7 +98,7 @@ export SUITES set -ex # Valid applications -if [[ ${MACHINE_ID} != gaea-c5 || ${MACHINE_ID} != gaea-c6 ]] || [[ ${RT_COMPILER} != intelllvm ]]; then # skip MOM6SOLO on gaea with intelllvm +if [[ ${MACHINE_ID} != gaea-c5 && ${MACHINE_ID} != gaea-c6 ]] || [[ ${RT_COMPILER} != intelllvm ]]; then # skip MOM6SOLO on gaea with intelllvm if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then CMAKE_FLAGS+=" -DMOM6SOLO=ON" fi From 5bee5b224ade113bda8dac39e29e482f1f864877 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 4 Oct 2024 09:17:28 -0400 Subject: [PATCH 04/28] Update to 192 cores on Gaea-c6 --- 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 789f647efb..4ea25d36f4 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -323,7 +323,7 @@ elif [[ ${MACHINE_ID} = gaea-c5 ]]; then elif [[ ${MACHINE_ID} = gaea-c6 ]]; then - export TPN=128 + export TPN=192 export INPES_dflt=3 export JNPES_dflt=8 From 63a56ac77a2bbe28ac9b0c32c2bf1e88c5d53d9c Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 4 Oct 2024 09:32:39 -0400 Subject: [PATCH 05/28] Update tests to gaea-c5 and added gaea-c6 where necessary --- tests/tests/control_p8.v2.sfc | 2 +- tests/tests/control_wam | 2 +- tests/tests/control_wam_debug | 2 +- tests/tests/cpld_debug_gfsv17 | 5 ++++- tests/tests/cpld_debug_pdlib_p8 | 5 ++++- tests/tests/regional_atmaq | 2 +- tests/tests/regional_atmaq_debug | 2 +- tests/tests/regional_atmaq_faster | 2 +- tests/tests/regional_debug | 7 ++++++- 9 files changed, 20 insertions(+), 9 deletions(-) diff --git a/tests/tests/control_p8.v2.sfc b/tests/tests/control_p8.v2.sfc index d08987ae87..47ac27db5b 100644 --- a/tests/tests/control_p8.v2.sfc +++ b/tests/tests/control_p8.v2.sfc @@ -153,6 +153,6 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaea-c5 gaea-c6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_wam b/tests/tests/control_wam index 5018e6208c..20916a7a80 100644 --- a/tests/tests/control_wam +++ b/tests/tests/control_wam @@ -106,6 +106,6 @@ export DIAG_TABLE=diag_table_wam export INPUT_NML=wam_v17.nml.IN -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaea-c5 gaea-c6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_wam_debug b/tests/tests/control_wam_debug index 4c1852e2e0..12a7ea12a5 100644 --- a/tests/tests/control_wam_debug +++ b/tests/tests/control_wam_debug @@ -107,6 +107,6 @@ export DIAG_TABLE=diag_table_wam export INPUT_NML=wam_v17.nml.IN -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaea-c5 gaea-c6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 72debc6f49..a641e42382 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -111,7 +111,10 @@ export N_SPLIT=5 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi -if [[ $MACHINE_ID = gaea ]] && [[ $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaea-c5 ]] && [[ $RT_COMPILER = intelllvm ]]; then + WLCLK=40 +fi +if [[ $MACHINE_ID = gaea-c6 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=40 fi diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 90e02daccb..5c9b7af574 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -107,7 +107,10 @@ fi if [[ $MACHINE_ID = orion && $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi -if [[ $MACHINE_ID = gaea ]] && [[ $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaea-c5 ]] && [[ $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi +if [[ $MACHINE_ID = gaea-c6 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index df4603f299..2f2d36c25f 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -99,6 +99,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaea-c5 ]]; then TPN=16 fi diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 30783d3b52..ef60af1537 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -98,6 +98,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 WLCLK=60 -elif [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaea-c5 ]]; then TPN=16 fi diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster index 6ccb25375a..bd453d1af9 100644 --- a/tests/tests/regional_atmaq_faster +++ b/tests/tests/regional_atmaq_faster @@ -93,6 +93,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaea-c5 ]]; then TPN=18 fi diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index f4f6326b90..0f71ba2489 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -41,6 +41,11 @@ if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi -if [[ $MACHINE_ID = gaea && $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaea-c5 && $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi + +if [[ $MACHINE_ID = gaea-c6 && $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi + From bb833962b0de8eaa6fb0485512d4d5adee0936fd Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 4 Oct 2024 11:04:16 -0400 Subject: [PATCH 06/28] Remove MOM6SOLO from compile.sh --- tests/compile.sh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/compile.sh b/tests/compile.sh index 2c3c7796be..26e3a7881b 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -97,17 +97,6 @@ SUITES=$(grep -Po "\-DCCPP_SUITES=\K[^ ]*" <<< "${MAKE_OPT}") export SUITES set -ex -# Valid applications -if [[ ${MACHINE_ID} != gaea-c5 && ${MACHINE_ID} != gaea-c6 ]] || [[ ${RT_COMPILER} != intelllvm ]]; then # skip MOM6SOLO on gaea with intelllvm - if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then - CMAKE_FLAGS+=" -DMOM6SOLO=ON" - fi - - if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then - CMAKE_FLAGS+=" -DMOM6SOLO=ON" - fi -fi - CMAKE_FLAGS=$(set -e; trim "${CMAKE_FLAGS}") echo "CMAKE_FLAGS = ${CMAKE_FLAGS}" From 4113feaa74cbba08a2330e8c8e465494bf0f7dfb Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 18 Oct 2024 08:22:52 -0400 Subject: [PATCH 07/28] gaea-c5 --> gaeac5 and gaea-c6 --> gaeac6 --- tests/compile.sh | 4 ++-- tests/default_vars.sh | 4 ++-- tests/detect_machine.sh | 12 ++++++------ tests/module-setup.sh | 4 ++-- tests/rt.sh | 14 +++++++------- tests/rt_utils.sh | 8 ++++---- tests/run_test.sh | 6 +++--- tests/tests/control_p8.v2.sfc | 2 +- tests/tests/control_wam | 2 +- tests/tests/control_wam_debug | 2 +- tests/tests/cpld_debug_gfsv17 | 4 ++-- tests/tests/cpld_debug_pdlib_p8 | 4 ++-- tests/tests/regional_debug | 4 ++-- 13 files changed, 35 insertions(+), 35 deletions(-) diff --git a/tests/compile.sh b/tests/compile.sh index 26e3a7881b..acc2dada5f 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -61,10 +61,10 @@ case ${MACHINE_ID} in ;; *) # Activate lua environment for gaea c5 - if [[ ${MACHINE_ID} == gaea-c5 ]]; then + if [[ ${MACHINE_ID} == gaeac5 ]]; then module reset fi - if [[ ${MACHINE_ID} == gaea-c6 ]]; then + if [[ ${MACHINE_ID} == gaeac6 ]]; then module reset fi # Load fv3 module diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 4ea25d36f4..b5c7091710 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -300,7 +300,7 @@ elif [[ ${MACHINE_ID} = s4 ]]; then export ICE_tasks_cpl_bmrk=48 export WAV_tasks_cpl_bmrk=80 -elif [[ ${MACHINE_ID} = gaea-c5 ]]; then +elif [[ ${MACHINE_ID} = gaeac5 ]]; then export TPN=128 @@ -321,7 +321,7 @@ elif [[ ${MACHINE_ID} = gaea-c5 ]]; then export WPG_cpl_atmw_gdas=24 export WAV_tasks_atmw_gdas=264 -elif [[ ${MACHINE_ID} = gaea-c6 ]]; then +elif [[ ${MACHINE_ID} = gaeac6 ]]; then export TPN=192 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 80ceac9269..99419f3555 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -21,10 +21,10 @@ case $(hostname -f) in dlogin0[1-9].dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood01-9 dlogin10.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood10 - gaea5[1-8]) MACHINE_ID=gaea-c5 ;; ### gaea51-58 - gaea5[1-8].ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea51-58 - gaea6[1-8]) MACHINE_ID=gaea-c6 ;; ### gaea61-58 - gaea6[1-8].ncrc.gov) MACHINE_ID=gaea-c6 ;; ### gaea61-58 + gaea5[1-8]) MACHINE_ID=gaeac5 ;; ### gaea51-58 + gaea5[1-8].ncrc.gov) MACHINE_ID=gaeac5 ;; ### gaea51-58 + gaea6[1-8]) MACHINE_ID=gaeac6 ;; ### gaea61-68 + gaea6[1-8].ncrc.gov) MACHINE_ID=gaeac6 ;; ### gaea61-68 hfe0[1-9]) MACHINE_ID=hera ;; ### hera01-09 hfe1[0-2]) MACHINE_ID=hera ;; ### hera10-12 @@ -98,10 +98,10 @@ elif [[ -d /work ]]; then fi elif [[ -d /gpfs/f5 && -d /ncrc ]]; then # We are on GAEA C5. - MACHINE_ID=gaea-c5 + MACHINE_ID=gaeac5 elif [[ -d /gpfs/f6 && -d /ncrc ]]; then # We are on GAEA C6. - MACHINE_ID=gaea-c6 + MACHINE_ID=gaeac6 elif [[ -d /data/prod ]]; then # We are on SSEC's S4 MACHINE_ID=s4 diff --git a/tests/module-setup.sh b/tests/module-setup.sh index c1bddc7811..de25ad5a05 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -65,7 +65,7 @@ elif [[ ${MACHINE_ID} = frontera ]] ; then fi module purge -elif [[ ${MACHINE_ID} = gaea-c5 ]] ; then +elif [[ ${MACHINE_ID} = gaeac5 ]] ; then # We are on GAEA if ( ! eval module help > /dev/null 2>&1 ) ; then # We cannot simply load the module command. The GAEA @@ -76,7 +76,7 @@ elif [[ ${MACHINE_ID} = gaea-c5 ]] ; then source /etc/profile fi module reset -elif [[ ${MACHINE_ID} = gaea-c6 ]]; then +elif [[ ${MACHINE_ID} = gaeac6 ]]; then if ( ! eval module help > /dev/null 2>&1 ) ; then source /opt/cray/pe/lmod/lmod/init/bash fi diff --git a/tests/rt.sh b/tests/rt.sh index d7fba413a8..7fb83c8297 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -709,8 +709,8 @@ case ${MACHINE_ID} in PTMP="/lfs/h2/emc/ptmp" SCHEDULER="pbs" ;; - gaea-c5) - echo "rt.sh: Setting up gaea-c5..." + gaeac5) + echo "rt.sh: Setting up gaea c5..." if [[ "${ROCOTO:-false}" == true ]] ; then module use /ncrc/proj/epic/rocoto/modulefiles module load rocoto @@ -741,8 +741,8 @@ case ${MACHINE_ID} in SCHEDULER="slurm" ;; - gaea-c6) - echo "rt.sh: Setting up gaea-c6..." + gaeac6) + echo "rt.sh: Setting up gaea c6..." if [[ "${ROCOTO:-false}" == true ]] ; then # module use /ncrc/proj/epic/rocoto/modulefiles module load rocoto @@ -751,12 +751,12 @@ case ${MACHINE_ID} in export LD_PRELOAD=/usr/lib64/libstdc++.so.6 module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core - #module load PrgEnv-intel/8.5.0 + module load PrgEnv-intel/8.5.0 module load stack-intel/2023.2.0 - #module load cray-mpich/8.1.29 + module load cray-mpich/8.1.29 module load python/3.10.13 module use /ncrc/proj/epic/spack-stack/modulefiles - #module load gcc-native/12.3 + module load gcc-native/12.3 if [[ "${ECFLOW:-false}" == true ]] ; then #module load ecflow/5.8.4 module load ecflow diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index e6ac8add39..894a9c0b41 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -309,10 +309,10 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == s4 ]]; then BUILD_WALLTIME="01:00:00" fi - if [[ ${MACHINE_ID} == gaea-c5 ]]; then + if [[ ${MACHINE_ID} == gaeac5 ]]; then BUILD_WALLTIME="01:00:00" fi - if [[ ${MACHINE_ID} == gaea-c6 ]]; then + if [[ ${MACHINE_ID} == gaeac6 ]]; then BUILD_WALLTIME="01:00:00" fi @@ -325,7 +325,7 @@ rocoto_create_compile_task() { ${COMPILE_QUEUE} EOF - if [[ "${MACHINE_ID}" == gaea-c5 || "${MACHINE_ID}" == gaea-c6 ]] ; then + if [[ "${MACHINE_ID}" == gaeac5 || "${MACHINE_ID}" == gaeac6 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=es eslogin_c5 @@ -369,7 +369,7 @@ rocoto_create_run_task() { ${ROCOTO_NODESIZE:+${ROCOTO_NODESIZE}} EOF - if [[ "${MACHINE_ID}" == gaea-c5 || "${MACHINE_ID}" == gaea-c6 ]] ; then + if [[ "${MACHINE_ID}" == gaeac5 || "${MACHINE_ID}" == gaeac6 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=${PARTITION} --partition=batch diff --git a/tests/run_test.sh b/tests/run_test.sh index cc0b5fcd14..d1972309a5 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -116,12 +116,12 @@ case ${MACHINE_ID} in stampede|expanse|noaacloud) echo "No special nccmp load necessary" ;; - gaea-c5) + gaeac5) module use /ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core module load stack-intel/2023.1.0 stack-cray-mpich/8.1.25 module load nccmp/1.9.0.1 ;; - gaea-c6) + gaeac6) module use modulefiles module load modules.fv3 module load gcc-native/12.3 @@ -446,7 +446,7 @@ if [[ ${skip_check_results} == false ]]; then else if [[ ${i##*.} == nc* ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaea-c5 gaea-c6 jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then + if [[ " orion hercules hera wcoss2 acorn derecho gaeac5 gaeac6 jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then printf "USING NCCMP.." >> "${RT_LOG}" printf "USING NCCMP.." if [[ ${CMP_DATAONLY} == false ]]; then diff --git a/tests/tests/control_p8.v2.sfc b/tests/tests/control_p8.v2.sfc index 47ac27db5b..d1afdbc4ca 100644 --- a/tests/tests/control_p8.v2.sfc +++ b/tests/tests/control_p8.v2.sfc @@ -153,6 +153,6 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ " hera orion hercules gaea-c5 gaea-c6 jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_wam b/tests/tests/control_wam index 20916a7a80..d70921938b 100644 --- a/tests/tests/control_wam +++ b/tests/tests/control_wam @@ -106,6 +106,6 @@ export DIAG_TABLE=diag_table_wam export INPUT_NML=wam_v17.nml.IN -if [[ " hera orion hercules gaea-c5 gaea-c6 jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_wam_debug b/tests/tests/control_wam_debug index 12a7ea12a5..c52d742268 100644 --- a/tests/tests/control_wam_debug +++ b/tests/tests/control_wam_debug @@ -107,6 +107,6 @@ export DIAG_TABLE=diag_table_wam export INPUT_NML=wam_v17.nml.IN -if [[ " hera orion hercules gaea-c5 gaea-c6 jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index a641e42382..4b7243438d 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -111,10 +111,10 @@ export N_SPLIT=5 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi -if [[ $MACHINE_ID = gaea-c5 ]] && [[ $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac5 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=40 fi -if [[ $MACHINE_ID = gaea-c6 ]] && [[ $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac6 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=40 fi diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 5c9b7af574..318f3cfecf 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -107,10 +107,10 @@ fi if [[ $MACHINE_ID = orion && $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi -if [[ $MACHINE_ID = gaea-c5 ]] && [[ $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac5 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi -if [[ $MACHINE_ID = gaea-c6 ]] && [[ $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac6 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index 0f71ba2489..13f2e328cd 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -41,11 +41,11 @@ if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi -if [[ $MACHINE_ID = gaea-c5 && $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac5 && $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi -if [[ $MACHINE_ID = gaea-c6 && $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac6 && $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi From 0c4790ee55ea53d78425233e30678aa5d539ec38 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 18 Oct 2024 09:43:28 -0400 Subject: [PATCH 08/28] Bring in c5 changes from @RatkoVasic-NOAA and testing export FI_VERBS_PREFER_XRC=0 fix --- .../{ufs_gaea-c5.intel.lua => ufs_gaeac5.intel.lua} | 0 .../{ufs_gaea-c6.intel.lua => ufs_gaeac6.intel.lua} | 0 ...mpile_slurm.IN_gaea-c5 => compile_slurm.IN_gaeac5} | 0 ...mpile_slurm.IN_gaea-c6 => compile_slurm.IN_gaeac6} | 0 .../{fv3_slurm.IN_gaea-c5 => fv3_slurm.IN_gaeac5} | 1 + .../{fv3_slurm.IN_gaea-c6 => fv3_slurm.IN_gaeac6} | 1 + ...ssionTests_gaea.log => RegressionTests_gaeac5.log} | 0 tests/rt.sh | 11 +++++------ tests/run_test.sh | 11 +++++++---- 9 files changed, 14 insertions(+), 10 deletions(-) rename modulefiles/{ufs_gaea-c5.intel.lua => ufs_gaeac5.intel.lua} (100%) rename modulefiles/{ufs_gaea-c6.intel.lua => ufs_gaeac6.intel.lua} (100%) rename tests/fv3_conf/{compile_slurm.IN_gaea-c5 => compile_slurm.IN_gaeac5} (100%) rename tests/fv3_conf/{compile_slurm.IN_gaea-c6 => compile_slurm.IN_gaeac6} (100%) rename tests/fv3_conf/{fv3_slurm.IN_gaea-c5 => fv3_slurm.IN_gaeac5} (97%) rename tests/fv3_conf/{fv3_slurm.IN_gaea-c6 => fv3_slurm.IN_gaeac6} (97%) rename tests/logs/{RegressionTests_gaea.log => RegressionTests_gaeac5.log} (100%) diff --git a/modulefiles/ufs_gaea-c5.intel.lua b/modulefiles/ufs_gaeac5.intel.lua similarity index 100% rename from modulefiles/ufs_gaea-c5.intel.lua rename to modulefiles/ufs_gaeac5.intel.lua diff --git a/modulefiles/ufs_gaea-c6.intel.lua b/modulefiles/ufs_gaeac6.intel.lua similarity index 100% rename from modulefiles/ufs_gaea-c6.intel.lua rename to modulefiles/ufs_gaeac6.intel.lua diff --git a/tests/fv3_conf/compile_slurm.IN_gaea-c5 b/tests/fv3_conf/compile_slurm.IN_gaeac5 similarity index 100% rename from tests/fv3_conf/compile_slurm.IN_gaea-c5 rename to tests/fv3_conf/compile_slurm.IN_gaeac5 diff --git a/tests/fv3_conf/compile_slurm.IN_gaea-c6 b/tests/fv3_conf/compile_slurm.IN_gaeac6 similarity index 100% rename from tests/fv3_conf/compile_slurm.IN_gaea-c6 rename to tests/fv3_conf/compile_slurm.IN_gaeac6 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea-c5 b/tests/fv3_conf/fv3_slurm.IN_gaeac5 similarity index 97% rename from tests/fv3_conf/fv3_slurm.IN_gaea-c5 rename to tests/fv3_conf/fv3_slurm.IN_gaeac5 index ad2459efba..b306f1a1c5 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea-c5 +++ b/tests/fv3_conf/fv3_slurm.IN_gaeac5 @@ -28,6 +28,7 @@ export OMP_STACKSIZE=1024M export NC_BLKSZ=1M export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +export FI_VERBS_PREFER_XRC=0 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea-c6 b/tests/fv3_conf/fv3_slurm.IN_gaeac6 similarity index 97% rename from tests/fv3_conf/fv3_slurm.IN_gaea-c6 rename to tests/fv3_conf/fv3_slurm.IN_gaeac6 index 97cb7049de..943e7a95b6 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea-c6 +++ b/tests/fv3_conf/fv3_slurm.IN_gaeac6 @@ -28,6 +28,7 @@ export OMP_STACKSIZE=1024M export NC_BLKSZ=1M export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +export FI_VERBS_PREFER_XRC=0 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaeac5.log similarity index 100% rename from tests/logs/RegressionTests_gaea.log rename to tests/logs/RegressionTests_gaeac5.log diff --git a/tests/rt.sh b/tests/rt.sh index 6b4a27d045..82254b849c 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -717,10 +717,10 @@ case ${MACHINE_ID} in ROCOTO_SCHEDULER="slurm" fi - export LD_PRELOAD=/opt/cray/pe/gcc/12.2.0/snos/lib64/libstdc++.so.6 - module load PrgEnv-intel/8.3.3 - module load intel-classic/2023.1.0 - module load cray-mpich/8.1.25 + export LD_PRELOAD=/usr/lib64/libstdc++.so.6 + module load PrgEnv-intel/8.5.0 + module load intel-classic/2023.2.0 + module load cray-mpich/8.1.28 module load python/3.9.12 module use /ncrc/proj/epic/spack-stack/modulefiles module load gcc/12.2.0 @@ -758,8 +758,7 @@ case ${MACHINE_ID} in module use /ncrc/proj/epic/spack-stack/modulefiles module load gcc-native/12.3 if [[ "${ECFLOW:-false}" == true ]] ; then - #module load ecflow/5.8.4 - module load ecflow + module load ecflow/5.8.4 ECF_HOST=$(hostname) ECF_PORT=$(( $(id -u) + 1500 )) export ECF_PORT ECF_HOST diff --git a/tests/run_test.sh b/tests/run_test.sh index 0cdeb6d1ba..67fff5eb68 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -118,13 +118,16 @@ case ${MACHINE_ID} in ;; gaeac5) module use /ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core - module load stack-intel/2023.1.0 stack-cray-mpich/8.1.25 + module load stack-intel/2023.2.0 stack-cray-mpich/8.1.28 module load nccmp/1.9.0.1 ;; gaeac6) - module use modulefiles - module load modules.fv3 - module load gcc-native/12.3 + module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core + module load stack-intel/2023.2.0 stack-cray-mpich/8.1.29 + module load nccmp/1.9.0.1 + #module use modulefiles + #module load modules.fv3 + #module load gcc-native/12.3 ;; derecho) module load nccmp From e1de81ec3bea2b4a390d372c21db4dc4621fd73b Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 18 Oct 2024 10:26:48 -0400 Subject: [PATCH 09/28] make identical but separate c5/c6 intelllvm lua for testing, fix missed gaeac5 instances --- modulefiles/ufs_gaeac5.intel.lua | 6 +-- ...intelllvm.lua => ufs_gaeac5.intelllvm.lua} | 0 modulefiles/ufs_gaeac6.intel.lua | 4 +- modulefiles/ufs_gaeac6.intelllvm.lua | 40 +++++++++++++++++++ tests/rt.sh | 2 +- tests/tests/regional_atmaq | 2 +- tests/tests/regional_atmaq_debug | 2 +- tests/tests/regional_atmaq_faster | 2 +- 8 files changed, 49 insertions(+), 9 deletions(-) rename modulefiles/{ufs_gaea.intelllvm.lua => ufs_gaeac5.intelllvm.lua} (100%) create mode 100644 modulefiles/ufs_gaeac6.intelllvm.lua diff --git a/modulefiles/ufs_gaeac5.intel.lua b/modulefiles/ufs_gaeac5.intel.lua index 2197c1542c..e63fd735a9 100644 --- a/modulefiles/ufs_gaeac5.intel.lua +++ b/modulefiles/ufs_gaeac5.intel.lua @@ -7,10 +7,10 @@ whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5 prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") -stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.28" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" @@ -30,4 +30,4 @@ unload("cray-libsci") setenv("CC","cc") setenv("CXX","CC") setenv("FC","ftn") -setenv("CMAKE_Platform","gaea.intel") +setenv("CMAKE_Platform","gaeac5.intel") diff --git a/modulefiles/ufs_gaea.intelllvm.lua b/modulefiles/ufs_gaeac5.intelllvm.lua similarity index 100% rename from modulefiles/ufs_gaea.intelllvm.lua rename to modulefiles/ufs_gaeac5.intelllvm.lua diff --git a/modulefiles/ufs_gaeac6.intel.lua b/modulefiles/ufs_gaeac6.intel.lua index 316ce7172f..260e7d67db 100644 --- a/modulefiles/ufs_gaeac6.intel.lua +++ b/modulefiles/ufs_gaeac6.intel.lua @@ -10,7 +10,7 @@ prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/env stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.29" +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.28" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" @@ -30,4 +30,4 @@ unload("cray-libsci") setenv("CC","cc") setenv("CXX","CC") setenv("FC","ftn") -setenv("CMAKE_Platform","gaea.intel") +setenv("CMAKE_Platform","gaeac6.intel") diff --git a/modulefiles/ufs_gaeac6.intelllvm.lua b/modulefiles/ufs_gaeac6.intelllvm.lua new file mode 100644 index 0000000000..f91a712d27 --- /dev/null +++ b/modulefiles/ufs_gaeac6.intelllvm.lua @@ -0,0 +1,40 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) + +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("ufs_common") + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +unload("darshan-runtime") +unload("cray-libsci") + +unload("intel-classic/2023.1.0") +load("intel-oneapi/2023.1.0") + +setenv("I_MPI_CC", "icx") +setenv("I_MPI_CXX", "icpx") +setenv("I_MPI_F90", "ifx") + +setenv("CC","cc") +setenv("CXX","CC") +setenv("FC","ftn") +setenv("CMAKE_Platform","gaea.intelllvm") diff --git a/tests/rt.sh b/tests/rt.sh index 82254b849c..d0d1ea76da 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -752,7 +752,7 @@ case ${MACHINE_ID} in export LD_PRELOAD=/usr/lib64/libstdc++.so.6 module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core module load PrgEnv-intel/8.5.0 - module load stack-intel/2023.2.0 + module load intel-classic/2023.2.0 module load cray-mpich/8.1.29 module load python/3.10.13 module use /ncrc/proj/epic/spack-stack/modulefiles diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index 2f2d36c25f..68d0f30739 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -99,6 +99,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = gaea-c5 ]]; then +elif [[ $MACHINE_ID = gaeac5 ]]; then TPN=16 fi diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index ef60af1537..08e629eaae 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -98,6 +98,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 WLCLK=60 -elif [[ $MACHINE_ID = gaea-c5 ]]; then +elif [[ $MACHINE_ID = gaeac5 ]]; then TPN=16 fi diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster index bd453d1af9..17491bc515 100644 --- a/tests/tests/regional_atmaq_faster +++ b/tests/tests/regional_atmaq_faster @@ -93,6 +93,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = gaea-c5 ]]; then +elif [[ $MACHINE_ID = gaeac5 ]]; then TPN=18 fi From 402c05b54e75d032371c8db1c4e07583b5179751 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Fri, 18 Oct 2024 10:30:59 -0400 Subject: [PATCH 10/28] update wording in intelllvm lua --- modulefiles/ufs_gaeac5.intelllvm.lua | 12 ++++++------ modulefiles/ufs_gaeac6.intel.lua | 2 +- modulefiles/ufs_gaeac6.intelllvm.lua | 14 +++++++------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/modulefiles/ufs_gaeac5.intelllvm.lua b/modulefiles/ufs_gaeac5.intelllvm.lua index f91a712d27..cc4c005fa3 100644 --- a/modulefiles/ufs_gaeac5.intelllvm.lua +++ b/modulefiles/ufs_gaeac5.intelllvm.lua @@ -1,16 +1,16 @@ help([[ This module loads libraries required for building and running UFS Weather Model - on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. + on the NOAA RDHPC machine Gaea C5 using Intel-2023.2.0. ]]) whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") -stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.28" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" @@ -27,8 +27,8 @@ load(pathJoin("nccmp", nccmp_ver)) unload("darshan-runtime") unload("cray-libsci") -unload("intel-classic/2023.1.0") -load("intel-oneapi/2023.1.0") +unload("intel-classic/2023.2.0") +load("intel-oneapi/2023.2.0") setenv("I_MPI_CC", "icx") setenv("I_MPI_CXX", "icpx") @@ -37,4 +37,4 @@ setenv("I_MPI_F90", "ifx") setenv("CC","cc") setenv("CXX","CC") setenv("FC","ftn") -setenv("CMAKE_Platform","gaea.intelllvm") +setenv("CMAKE_Platform","gaeac5.intelllvm") diff --git a/modulefiles/ufs_gaeac6.intel.lua b/modulefiles/ufs_gaeac6.intel.lua index 260e7d67db..ce59797288 100644 --- a/modulefiles/ufs_gaeac6.intel.lua +++ b/modulefiles/ufs_gaeac6.intel.lua @@ -10,7 +10,7 @@ prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/env stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.28" +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.29" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" diff --git a/modulefiles/ufs_gaeac6.intelllvm.lua b/modulefiles/ufs_gaeac6.intelllvm.lua index f91a712d27..61d71a47fc 100644 --- a/modulefiles/ufs_gaeac6.intelllvm.lua +++ b/modulefiles/ufs_gaeac6.intelllvm.lua @@ -1,16 +1,16 @@ help([[ This module loads libraries required for building and running UFS Weather Model - on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. + on the NOAA RDHPC machine Gaea C6 using Intel-2023.2.0. ]]) whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") -stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.29" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" @@ -27,8 +27,8 @@ load(pathJoin("nccmp", nccmp_ver)) unload("darshan-runtime") unload("cray-libsci") -unload("intel-classic/2023.1.0") -load("intel-oneapi/2023.1.0") +unload("intel-classic/2023.2.0") +load("intel-oneapi/2023.2.0") setenv("I_MPI_CC", "icx") setenv("I_MPI_CXX", "icpx") @@ -37,4 +37,4 @@ setenv("I_MPI_F90", "ifx") setenv("CC","cc") setenv("CXX","CC") setenv("FC","ftn") -setenv("CMAKE_Platform","gaea.intelllvm") +setenv("CMAKE_Platform","gaeac6.intelllvm") From f55fc8aa8c3476595abbe6b22eae87ee8d675997 Mon Sep 17 00:00:00 2001 From: JONG KIM Date: Thu, 31 Oct 2024 16:30:38 -0400 Subject: [PATCH 11/28] Update fv3_slurm.IN_gaeac6 --- tests/fv3_conf/fv3_slurm.IN_gaeac6 | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/fv3_conf/fv3_slurm.IN_gaeac6 b/tests/fv3_conf/fv3_slurm.IN_gaeac6 index 943e7a95b6..fb5caf41ad 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaeac6 +++ b/tests/fv3_conf/fv3_slurm.IN_gaeac6 @@ -29,6 +29,7 @@ export NC_BLKSZ=1M export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" export FI_VERBS_PREFER_XRC=0 +export FI_CXI_RX_MATCH_MODE=hybrid # Avoid job errors because of filesystem synchronization delays sync && sleep 1 From ece273d22de5275554a8d541c9901c77e803383b Mon Sep 17 00:00:00 2001 From: JONG KIM Date: Wed, 6 Nov 2024 16:27:25 -0500 Subject: [PATCH 12/28] Update rt.sh --- tests/rt.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index d0d1ea76da..428d33928b 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -765,7 +765,8 @@ case ${MACHINE_ID} in fi #DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT - DISKNM=/gpfs/f6/drsa-fire2/world-shared/Brian.Curtis + #DISKNM=/gpfs/f6/drsa-fire2/world-shared/Brian.Curtis + DISKNM=/gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT QUEUE=normal COMPILE_QUEUE=normal PARTITION=c6 From 1d6908cdb1eaa1b7c4af043f9170ef4eed5ed6fa Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Fri, 15 Nov 2024 02:03:38 +0000 Subject: [PATCH 13/28] Update rocoto and ecflow module loading for Gaea-C6 --- tests/rt.sh | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/tests/rt.sh b/tests/rt.sh index 62130cdef2..4de569ac37 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -743,28 +743,24 @@ case ${MACHINE_ID} in gaeac6) echo "rt.sh: Setting up gaea c6..." if [[ "${ROCOTO:-false}" == true ]] ; then - # module use /ncrc/proj/epic/rocoto/modulefiles - module load rocoto + module use /ncrc/proj/epic/c6/modulefiles + module load rocoto/1.3.7 ROCOTO_SCHEDULER="slurm" fi export LD_PRELOAD=/usr/lib64/libstdc++.so.6 module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core - module load PrgEnv-intel/8.5.0 - module load intel-classic/2023.2.0 + module load stack-intel/2023.2.0 module load cray-mpich/8.1.29 module load python/3.10.13 - module use /ncrc/proj/epic/spack-stack/modulefiles - module load gcc-native/12.3 if [[ "${ECFLOW:-false}" == true ]] ; then + module use /ncrc/proj/epic/spack-stack/modulefiles module load ecflow/5.8.4 ECF_HOST=$(hostname) ECF_PORT=$(( $(id -u) + 1500 )) export ECF_PORT ECF_HOST fi - #DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT - #DISKNM=/gpfs/f6/drsa-fire2/world-shared/Brian.Curtis DISKNM=/gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT QUEUE=normal COMPILE_QUEUE=normal From fa68c070de216c318e5685b842549fe28d943772 Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Mon, 18 Nov 2024 22:36:59 +0000 Subject: [PATCH 14/28] Fix HAFS runtime errors. --- tests/fv3_conf/fv3_slurm.IN_gaeac6 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/fv3_conf/fv3_slurm.IN_gaeac6 b/tests/fv3_conf/fv3_slurm.IN_gaeac6 index fb5caf41ad..9511554fb7 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaeac6 +++ b/tests/fv3_conf/fv3_slurm.IN_gaeac6 @@ -30,6 +30,8 @@ export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" export FI_VERBS_PREFER_XRC=0 export FI_CXI_RX_MATCH_MODE=hybrid +export COMEX_EAGER_THRESHOLD=65536 +export FI_CXI_RDZV_THRESHOLD=65536 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 From 89424899294949d5f1d99e44067c5757a8931d17 Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Sun, 24 Nov 2024 18:32:32 -0500 Subject: [PATCH 15/28] Change work-dir to open-for-read space. --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index 4de569ac37..6fed829859 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -765,7 +765,7 @@ case ${MACHINE_ID} in QUEUE=normal COMPILE_QUEUE=normal PARTITION=c6 - dprefix=${dprefix:-/gpfs/f6/${ACCNR}/scratch/${USER}} + dprefix=${dprefix:-/gpfs/f6/${ACCNR}/proj-shared/${USER}} STMP=${STMP:-${dprefix}/RT_BASELINE} PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} From 7b17f0f77c5687f10c1a5dd6f1b6cefa140b2f3d Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Mon, 25 Nov 2024 13:37:23 -0500 Subject: [PATCH 16/28] Gaea C6 additions --- ...igure_gaea.intel.cmake => configure_gaeac5.intel.cmake} | 0 ...ea.intelllvm.cmake => configure_gaeac5.intelllvm.cmake} | 0 cmake/configure_gaeac6.intel.cmake | 4 ++++ cmake/configure_gaeac6.intelllvm.cmake | 2 ++ tests/module-setup.sh | 2 +- tests/rt_utils.sh | 7 ++++++- 6 files changed, 13 insertions(+), 2 deletions(-) rename cmake/{configure_gaea.intel.cmake => configure_gaeac5.intel.cmake} (100%) rename cmake/{configure_gaea.intelllvm.cmake => configure_gaeac5.intelllvm.cmake} (100%) create mode 100644 cmake/configure_gaeac6.intel.cmake create mode 100644 cmake/configure_gaeac6.intelllvm.cmake diff --git a/cmake/configure_gaea.intel.cmake b/cmake/configure_gaeac5.intel.cmake similarity index 100% rename from cmake/configure_gaea.intel.cmake rename to cmake/configure_gaeac5.intel.cmake diff --git a/cmake/configure_gaea.intelllvm.cmake b/cmake/configure_gaeac5.intelllvm.cmake similarity index 100% rename from cmake/configure_gaea.intelllvm.cmake rename to cmake/configure_gaeac5.intelllvm.cmake diff --git a/cmake/configure_gaeac6.intel.cmake b/cmake/configure_gaeac6.intel.cmake new file mode 100644 index 0000000000..6037c6379f --- /dev/null +++ b/cmake/configure_gaeac6.intel.cmake @@ -0,0 +1,4 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) +set(MOM6_Extra_FORTRAN_FLAGS "-xsse2") +set(HYCOM_Extra_FORTRAN_FLAGS "-xSSE4.2") +set(HYCOM_Extra_C_FLAGS "-xSSE4.2") \ No newline at end of file diff --git a/cmake/configure_gaeac6.intelllvm.cmake b/cmake/configure_gaeac6.intelllvm.cmake new file mode 100644 index 0000000000..42e6486231 --- /dev/null +++ b/cmake/configure_gaeac6.intelllvm.cmake @@ -0,0 +1,2 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) +set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 4c71802b53..d39bbeb95c 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -80,7 +80,7 @@ elif [[ ${MACHINE_ID} = gaeac6 ]]; then if ( ! eval module help > /dev/null 2>&1 ) ; then source /opt/cray/pe/lmod/lmod/init/bash fi - module purge + module reset elif [[ ${MACHINE_ID} = expanse ]]; then # We are on SDSC Expanse diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 8dd6ec5f79..6e43e1e914 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -328,10 +328,15 @@ rocoto_create_compile_task() { ${COMPILE_QUEUE} EOF - if [[ "${MACHINE_ID}" == gaeac5 || "${MACHINE_ID}" == gaeac6 ]] ; then + if [[ "${MACHINE_ID}" == gaeac5 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=es eslogin_c5 +EOF + elif [[ "${MACHINE_ID}" == gaeac6 ]] ; then + cat << EOF >> "${ROCOTO_XML}" + --clusters=es + eslogin_c6 EOF elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then cat << EOF >> "${ROCOTO_XML}" From 6107caa7b7f81c78e731cf2afcf53cd08c108a4c Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Tue, 26 Nov 2024 14:16:13 -0500 Subject: [PATCH 17/28] Increase number of nodes for some cases on Gaea C6 --- tests/tests/atmaero_control_p8 | 4 ++++ tests/tests/cpld_control_c192_p8 | 2 +- tests/tests/cpld_control_ciceC_p8 | 4 ++++ tests/tests/cpld_control_p8.v2.sfc | 2 +- tests/tests/cpld_control_p8_mixedmode | 4 ++++ tests/tests/cpld_debug_p8 | 4 ++++ 6 files changed, 18 insertions(+), 2 deletions(-) diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index 6d4012d580..897c9c6a1e 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -180,3 +180,7 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. + +if [[ $RT_COMPILER = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index b70352aee0..7d7c73b3e9 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -140,7 +140,7 @@ export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] && [[ $RT_COMPILER = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index 07057d8073..1c4fcc14c7 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -93,3 +93,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $RT_COMPILER = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index bc6e073c61..f039c9360e 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN export V2_SFC_FILE=true -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] && [[ $RT_COMPILER = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index 0d35ba3114..161b6348b7 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -92,3 +92,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $RT_COMPILER = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index 663e21eccf..4c1ca3a24a 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -81,6 +81,10 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +if [[ $MACHINE_ID = gaeac6 ]] ; then + TPN=96 +fi + export K_SPLIT=4 export N_SPLIT=5 From 32b84187fd62f1be5813584526b923fb7330e617 Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Tue, 26 Nov 2024 14:41:35 -0500 Subject: [PATCH 18/28] Correct errors (variable MACHINE_ID to RT_COMPILER) --- tests/tests/atmaero_control_p8 | 2 +- tests/tests/cpld_control_c192_p8 | 2 +- tests/tests/cpld_control_ciceC_p8 | 2 +- tests/tests/cpld_control_p8.v2.sfc | 2 +- tests/tests/cpld_control_p8_mixedmode | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index 897c9c6a1e..afb6629547 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -181,6 +181,6 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ $RT_COMPILER = gaeac6 ]]; then +if [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 7d7c73b3e9..d9b04381e6 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -140,7 +140,7 @@ export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]] && [[ $RT_COMPILER = gaeac6 ]]; then +if [[ $MACHINE_ID = derecho ]] && [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index 1c4fcc14c7..20aeff2e64 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -94,6 +94,6 @@ export N_SPLIT=5 export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -if [[ $RT_COMPILER = gaeac6 ]]; then +if [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index f039c9360e..c397c70fde 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN export V2_SFC_FILE=true -if [[ $MACHINE_ID = derecho ]] && [[ $RT_COMPILER = gaeac6 ]]; then +if [[ $MACHINE_ID = derecho ]] && [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index 161b6348b7..e23f9a0bc2 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -93,6 +93,6 @@ export N_SPLIT=5 export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -if [[ $RT_COMPILER = gaeac6 ]]; then +if [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi From 3dcee6e27e30f062ac09ab381ce563bf9d6ed800 Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Tue, 26 Nov 2024 22:57:38 -0500 Subject: [PATCH 19/28] Adjust TPN for some test cases. --- tests/tests/cpld_control_p8 | 2 +- tests/tests/cpld_control_p8_faster | 4 ++++ tests/tests/regional_atmaq_debug | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index f3cb8da89c..4a23793a45 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -85,7 +85,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] && [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster index 4e972c16aa..69cb7525a5 100644 --- a/tests/tests/cpld_control_p8_faster +++ b/tests/tests/cpld_control_p8_faster @@ -96,3 +96,7 @@ 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. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 08e629eaae..e45187a264 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -100,4 +100,6 @@ if [[ $MACHINE_ID = hera ]]; then WLCLK=60 elif [[ $MACHINE_ID = gaeac5 ]]; then TPN=16 +elif [[ $MACHINE_ID = gaeac6 ]]; then + TPN=128 fi From 29cef4983851bfb2d6fc61864d8e0fe2aae12898 Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Wed, 27 Nov 2024 01:29:14 -0500 Subject: [PATCH 20/28] Fix AND to OR in if statement. --- tests/tests/cpld_control_c192_p8 | 2 +- tests/tests/cpld_control_p8 | 2 +- tests/tests/cpld_control_p8.v2.sfc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index d9b04381e6..3c719ed235 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -140,7 +140,7 @@ export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]] && [[ $MACHINE_ID = gaeac6 ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 4a23793a45..bcb0427037 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -85,7 +85,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]] && [[ $MACHINE_ID = gaeac6 ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index c397c70fde..14bec35bf2 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN export V2_SFC_FILE=true -if [[ $MACHINE_ID = derecho ]] && [[ $MACHINE_ID = gaeac6 ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi From 06892f84ac93325b34e78c69fcad231aa2d14ca2 Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Mon, 2 Dec 2024 13:37:12 -0500 Subject: [PATCH 21/28] Reduce number of nodes using more TPN in cpld_control_c192_p8 --- tests/tests/cpld_control_c192_p8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 3c719ed235..dbd5840f43 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -141,7 +141,7 @@ export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then - TPN=96 + TPN=144 fi # HR4 GFSv17 GWD update From d31b872fa3437a913f781ba9e4058c514d8d456c Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Mon, 2 Dec 2024 18:21:35 -0500 Subject: [PATCH 22/28] Ajdust some TPNs in coupled runs. --- tests/tests/cpld_control_qr_p8 | 4 ++++ tests/tests/cpld_decomp_p8 | 2 +- tests/tests/cpld_mpi_p8 | 2 +- tests/tests/cpld_restart_p8 | 2 +- tests/tests/cpld_restart_qr_p8 | 4 ++++ 5 files changed, 11 insertions(+), 3 deletions(-) diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 index 48bb88f2ab..4ede95ef1f 100644 --- a/tests/tests/cpld_control_qr_p8 +++ b/tests/tests/cpld_control_qr_p8 @@ -92,3 +92,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 382960bfc1..515b922ea4 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index 8c9244e675..884acdd47f 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index 0409d3d20d..fc7d2348fb 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -93,7 +93,7 @@ export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index e1d8b85d16..cf0967282a 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -100,3 +100,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi From 5edbfd1e5592ef8aa10ccb93f6fa66e866c00e1b Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Mon, 2 Dec 2024 20:24:23 -0500 Subject: [PATCH 23/28] Add log file RegressionTests_gaeac6.log (and test_changes.list). --- tests/logs/RegressionTests_gaeac6.log | 327 +++++++++++++++++++++++--- tests/test_changes.list | 189 --------------- 2 files changed, 296 insertions(+), 220 deletions(-) diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 2b68a558ab..6bc814361f 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,31 +1,33 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -2ccc549348da37aac51ab44482174dff2bb2912d +d31b872fa3437a913f781ba9e4058c514d8d456c 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) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) 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 + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,33 +38,296 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f6/drsa-fire2/world-shared/Brian.Curtis/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /gpfs/f6/drsa-fire2/scratch/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_2186049 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241121 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Ratko.Vasic/RT_RUNDIRS/Ratko.Vasic/FV3_RT/rt_3152614 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: drsa-fire2 -* (-c) - CREATE NEW BASELINES -* (-n) - RUN SINGLE TEST: cpld_control_p8 +* (-a) - HPC PROJECT ACCOUNT: bil-fire8 +* (-k) - KEEP RUN DIRECTORY * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_intel' [09:12, 08:08] ( 6 warnings 10 remarks ) -FAILED: TEST TIMED OUT -- TEST 'cpld_control_p8_intel' [, ]( MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:12, 08:46] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:08, 07:07](2027 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:12, 11:35] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:22, 09:38](1924 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:09, 10:18](1956 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:02, 04:42](1089 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:04, 11:11](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:12, 11:49] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [11:30, 09:26](1918 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [26:13, 24:25] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:45, 17:35](1949 MB) + +PASS -- COMPILE 's2swa_intel' [10:18, 08:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:57, 09:08](2062 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:39, 09:09](2063 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:05, 04:57](1624 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:25, 09:09](2084 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:35, 04:58](1465 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:35](2252 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:50, 08:53](2056 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:28, 07:16](2012 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:09, 09:12](2062 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [11:10, 06:12](2438 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [06:51, 03:57](2666 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:18, 11:06](3583 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:38, 06:36](3398 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 05:11](1925 MB) + +PASS -- COMPILE 's2sw_intel' [10:18, 08:32] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:27, 04:49](1930 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:53, 07:54](1856 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:47] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:28, 14:06](2093 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:43] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:23, 05:58](1966 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:59] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:15, 03:13](1990 MB) + +PASS -- COMPILE 's2s_intel' [57:17, 55:52] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:42, 04:12](2874 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:58, 01:16](2881 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:48, 00:45](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:12, 09:20] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:26, 09:06](2060 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:12, 11:23] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:21, 17:53](1941 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:45, 08:59](1118 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:30, 20:58](1920 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:47] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:09, 20:06](1958 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:44] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:44, 02:34](530 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:40, 02:11](1433 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:16](1437 MB) +PASS -- TEST 'control_latlon_intel' [04:28, 02:12](1427 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:56, 02:14](1435 MB) +PASS -- TEST 'control_c48_intel' [10:11, 07:26](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:41, 04:20](693 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:12, 07:29](1576 MB) +PASS -- TEST 'control_c192_intel' [10:06, 07:37](1694 MB) +PASS -- TEST 'control_c384_intel' [19:26, 16:25](1959 MB) +PASS -- TEST 'control_c384gdas_intel' [13:33, 09:56](1182 MB) +PASS -- TEST 'control_stochy_intel' [03:33, 01:24](492 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:25, 00:43](293 MB) +PASS -- TEST 'control_lndp_intel' [03:24, 01:23](490 MB) +PASS -- TEST 'control_iovr4_intel' [03:25, 01:57](485 MB) +PASS -- TEST 'control_iovr5_intel' [03:26, 01:58](483 MB) +PASS -- TEST 'control_p8_intel' [05:15, 02:19](1722 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:35, 02:01](1728 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 02:27](1722 MB) +PASS -- TEST 'control_restart_p8_intel' [03:52, 01:21](874 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:46, 02:25](1722 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:47, 01:19](884 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:44, 02:31](1716 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:46, 02:18](1802 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:36, 04:16](1723 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:30, 02:40](1778 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:43, 02:01](1734 MB) +PASS -- TEST 'merra2_thompson_intel' [04:35, 02:17](1727 MB) +PASS -- TEST 'regional_control_intel' [05:27, 03:23](877 MB) +PASS -- TEST 'regional_restart_intel' [03:34, 01:50](859 MB) +PASS -- TEST 'regional_decomp_intel' [05:26, 03:28](885 MB) +PASS -- TEST 'regional_2threads_intel' [04:22, 02:09](1017 MB) +PASS -- TEST 'regional_noquilt_intel' [05:25, 03:17](1204 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:53, 03:21](884 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:39, 03:23](863 MB) +PASS -- TEST 'regional_wofs_intel' [06:24, 04:23](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 06:11] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [06:51, 04:50](867 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 02:50](1158 MB) +PASS -- TEST 'rap_decomp_intel' [06:47, 04:56](867 MB) +PASS -- TEST 'rap_2threads_intel' [06:29, 04:22](950 MB) +PASS -- TEST 'rap_restart_intel' [04:53, 02:31](744 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:55, 04:45](869 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:34, 05:00](866 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:34, 03:33](742 MB) +PASS -- TEST 'hrrr_control_intel' [04:51, 02:33](865 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 02:37](861 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:47, 02:17](1082 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:23](694 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:41, 04:42](862 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:27, 06:07](1822 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:27, 05:52](1813 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 05:53] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:35, 04:12](820 MB) +PASS -- TEST 'control_ras_intel' [04:23, 02:12](523 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:48] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:54, 07:29](1512 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:12, 06:15] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:53, 01:54](1722 MB) +PASS -- TEST 'regional_control_faster_intel' [05:40, 03:10](878 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:27] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:36, 01:33](1457 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:56, 01:28](1459 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:20, 02:05](661 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:26, 01:54](660 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:34, 02:51](962 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 01:55](670 MB) +PASS -- TEST 'control_diag_debug_intel' [03:30, 01:49](1516 MB) +PASS -- TEST 'control_debug_p8_intel' [03:23, 01:45](1747 MB) +PASS -- TEST 'regional_debug_intel' [13:30, 11:11](888 MB) +PASS -- TEST 'rap_control_debug_intel' [05:24, 03:22](1039 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:20, 03:20](1036 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 03:19](1040 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 03:27](1040 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 03:19](1035 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:28, 03:35](1121 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 03:24](1040 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 03:25](1035 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:24, 03:20](1043 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:29, 03:22](1037 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:27, 03:19](1035 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 03:22](1039 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:29](1036 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 03:18](1037 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:28, 03:21](1041 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 03:22](1035 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:01, 05:42](1041 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:04] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:38, 08:44](1540 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:52] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:42, 02:42](1033 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:37, 04:01](745 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:33, 02:12](743 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 03:44](796 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:52, 01:59](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 02:20](740 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:33, 03:03](645 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:12](623 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:44] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:50, 01:22](952 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:36, 00:50](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:36, 00:55](824 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:12, 05:49] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:00, 02:43](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:05] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 03:15](919 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:26, 03:16](916 MB) +PASS -- TEST 'conus13km_debug_intel' [10:48, 08:49](1004 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [11:35, 09:14](672 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:48, 05:14](1135 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:47, 09:05](1071 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:01] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 03:18](943 MB) + +PASS -- COMPILE 'hafsw_intel' [09:12, 07:33] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:10, 03:37](714 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:30, 03:01](1075 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:20, 04:48](789 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:10, 07:56](816 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [11:02, 08:36](835 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:54, 03:31](471 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:37, 04:30](483 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:28, 01:47](400 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:23, 04:37](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:41, 02:32](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:47, 02:24](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:21, 03:01](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:48, 01:00](429 MB) +PASS -- TEST 'gnv1_nested_intel' [04:59, 02:55](1709 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:17] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:33, 08:21](597 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:12, 07:24] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:56, 05:04](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:56, 05:08](798 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:40] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:03, 03:49](792 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 07:12] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:12, 04:18](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:56, 04:22](754 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:41, 10:59](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:12, 05:04] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:26, 01:41](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:02](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 01:36](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:37](638 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:36](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:40](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 01:41](750 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 01:35](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:39, 04:09](705 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:29, 04:02](686 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 01:42](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 02:43](1967 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 02:46](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [17:13, 15:41] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 03:43](737 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 05:06] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 01:41](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:36] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:23, 01:01](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:36](461 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:39] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:37, 02:27](1796 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 06:08] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:31, 05:19](1787 MB) + +PASS -- COMPILE 'atml_intel' [08:12, 06:42] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:08, 03:52](1890 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:06, 03:53](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:56, 02:13](1041 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:58] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:35, 04:08](1923 MB) + +PASS -- COMPILE 'atmw_intel' [08:12, 07:03] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:29, 01:16](1755 MB) + +PASS -- COMPILE 'atmaero_intel' [07:11, 05:58] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:31, 02:45](1946 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:37, 03:15](1606 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:28, 03:18](1618 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:05] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:55, 13:25](4442 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:33] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:54, 06:06](826 MB) SYNOPSIS: -Starting Date/Time: 20241002 11:56:43 -Ending Date/Time: 20241002 13:19:28 -Total Time: 01h:23m:40s -Compiles Completed: 1/1 -Tests Completed: 0/1 -Failed Tests: -* TEST cpld_control_p8_intel: FAILED: TEST TIMED OUT --- LOG: /gpfs/f6/drsa-fire2/scratch/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_2186049/cpld_control_p8_intel/err +Starting Date/Time: 20241202 18:22:23 +Ending Date/Time: 20241202 20:18:12 +Total Time: 01h:57m:39s +Compiles Completed: 42/42 +Tests Completed: 187/187 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. +A file 'test_changes.list' was generated but is empty. If you are using this log as a pull request verification, please commit 'test_changes.list'. -Result: FAILURE +Result: SUCCESS ====END OF GAEAC6 REGRESSION TESTING LOG==== diff --git a/tests/test_changes.list b/tests/test_changes.list index b889b4baed..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,189 +0,0 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -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 -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_bmark_p8 intel -cpld_restart_bmark_p8 intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_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 -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.v2.sfc 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_p8_rrtmgp intel -control_p8_mynn intel -merra2_thompson intel -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_noquilt intel -regional_netcdf_parallel intel -regional_2dwrtdecomp intel -rap_control intel -regional_spp_sppt_shum_skeb intel -rap_decomp intel -rap_2threads intel -rap_restart intel -rap_sfcdiff intel -rap_sfcdiff_decomp intel -rap_sfcdiff_restart intel -hrrr_control intel -hrrr_control_decomp intel -hrrr_control_2threads intel -hrrr_control_restart intel -rrfs_v1beta intel -control_wam intel -control_p8_faster intel -regional_control_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_diag_debug intel -control_debug_p8 intel -regional_debug intel -rap_control_debug intel -hrrr_control_debug intel -hrrr_gf_debug intel -hrrr_c3_debug intel -rap_unified_drag_suite_debug intel -rap_diag_debug intel -rap_cires_ugwp_debug intel -rap_unified_ugwp_debug intel -rap_lndp_debug intel -rap_progcld_thompson_debug intel -rap_noah_debug intel -rap_sfcdiff_debug intel -rap_noah_sfcdiff_cires_ugwp_debug intel -rrfs_v1beta_debug intel -rap_clm_lake_debug intel -rap_flake_debug intel -gnv1_c96_no_nest_debug intel -control_wam_debug intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -conus13km_control intel -conus13km_2threads intel -conus13km_restart_mismatch intel -rap_control_dyn64_phy32 intel -rap_control_debug_dyn32_phy32 intel -hrrr_control_debug_dyn32_phy32 intel -conus13km_debug intel -conus13km_debug_qr intel -conus13km_debug_2threads intel -conus13km_radar_tten_debug intel -rap_control_dyn64_phy32_debug intel -hafs_regional_atm_thompson_gfdlsf intel -gnv1_nested intel -atm_ds2s_docn_pcice intel -atm_ds2s_docn_dice intel -control_p8_atmlnd_sbs intel -control_p8_atmlnd intel -control_restart_p8_atmlnd intel -control_p8_atmlnd_debug intel -atmwav_control_noaero_p8 intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -control_c48 gnu -control_p8 gnu -control_p8_ugwpv1 gnu -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rrfs_v1beta gnu -control_diag_debug gnu -regional_debug gnu -rap_control_debug gnu -hrrr_control_debug gnu -hrrr_gf_debug gnu -hrrr_c3_debug gnu -rap_diag_debug gnu -rap_noah_sfcdiff_cires_ugwp_debug gnu -rap_progcld_thompson_debug gnu -rrfs_v1beta_debug gnu -control_debug_p8 gnu -rap_flake_debug gnu -rap_clm_lake_debug gnu -gnv1_c96_no_nest_debug gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -conus13km_control gnu -conus13km_2threads gnu -conus13km_restart_mismatch gnu -rap_control_dyn64_phy32 gnu -rap_control_debug_dyn32_phy32 gnu -hrrr_control_debug_dyn32_phy32 gnu -conus13km_debug gnu -conus13km_debug_qr gnu -conus13km_debug_2threads gnu -conus13km_radar_tten_debug gnu -rap_control_dyn64_phy32_debug gnu -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_regional_atm_fbh intel -control_c48_lnd_iau intel -cpld_control_gfsv17 intelllvm -cpld_debug_gfsv17 intelllvm -cpld_control_sfs intelllvm -cpld_control_p8 intelllvm -rap_control_dyn32_phy32 intelllvm -rap_control_dyn64_phy32 intelllvm From ff585427aa6ea2b6cd624e04a407588c68d12ff6 Mon Sep 17 00:00:00 2001 From: Ratko Vasic Date: Tue, 3 Dec 2024 13:12:16 -0500 Subject: [PATCH 24/28] Rename gaea to gaeac5 in rt.conf --- tests/rt.conf | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index 6c1b30a747..1ed8c56eae 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -293,9 +293,9 @@ RUN | datm_cdeps_lnd_era5 | - wcoss2 RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5 ### CDEPS Data Atmosphere tests with LM4 ### -COMPILE | datm_cdeps_lm4 | intel | -DAPP=LND-LM4 | + hera orion gaea | fv3 | -RUN | datm_cdeps_lm4_gswp3 | + hera orion gaea | baseline | -RUN | datm_cdeps_lm4_gswp3_rst | + hera orion gaea | | datm_cdeps_lm4_gswp3 +COMPILE | datm_cdeps_lm4 | intel | -DAPP=LND-LM4 | + hera orion gaeac5 | fv3 | +RUN | datm_cdeps_lm4_gswp3 | + hera orion gaeac5 | baseline | +RUN | datm_cdeps_lm4_gswp3_rst | + hera orion gaeac5 | | datm_cdeps_lm4_gswp3 ### AMIP+ tests ### COMPILE | atm_ds2s_docn_pcice | intel | -DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | @@ -342,17 +342,17 @@ RUN | cpld_regional_atm_fbh | - wcoss2 noaacloud aco # Coupled gfs17 tests on Gaea -COMPILE | s2swa_32bit_pdlib | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaea | fv3 | -RUN | cpld_control_gfsv17 | + gaea | baseline | +COMPILE | s2swa_32bit_pdlib | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaeac5 | fv3 | +RUN | cpld_control_gfsv17 | + gaeac5 | baseline | -COMPILE | s2swa_32bit_pdlib_debug | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + gaea | fv3 | -RUN | cpld_debug_gfsv17 | + gaea | baseline | +COMPILE | s2swa_32bit_pdlib_debug | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + gaeac5 | fv3 | +RUN | cpld_debug_gfsv17 | + gaeac5 | baseline | -COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaea | fv3 | -RUN | cpld_control_sfs | + gaea | baseline | +COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaeac5 | fv3 | +RUN | cpld_control_sfs | + gaeac5 | baseline | -COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | + gaea | fv3 | -RUN | cpld_control_p8 | + gaea | baseline | +COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | + gaeac5 | fv3 | +RUN | cpld_control_p8 | + gaeac5 | baseline | # Regional RRFS tests on Hera COMPILE | rrfs_dyn32_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON -DCCPP_32BIT=ON | + hera | fv3 | From b1937471fe0ef4580b44cd3a01d2754110ec8c7d Mon Sep 17 00:00:00 2001 From: jkbk2004 Date: Tue, 17 Dec 2024 10:55:16 -0500 Subject: [PATCH 25/28] sync up cmeps/cdeps hashes --- CDEPS-interface/CDEPS | 2 +- CMEPS-interface/CMEPS | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 1f9eaaa142..34d1eab8e4 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae +Subproject commit 34d1eab8e432cedf8a81976e3b675b32f41b043f diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 55576eba97..b5d1cc189f 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 55576eba972ad53cc6546f00d409fa27361f78bd +Subproject commit b5d1cc189fced4abcb13fc70ed2febb2aef61757 From 0990c81d28a1043b2d73675c0a8515ad082ea7b3 Mon Sep 17 00:00:00 2001 From: jkbk2004 Date: Tue, 17 Dec 2024 19:42:45 -0500 Subject: [PATCH 26/28] add gaea c6 RT log: passed --- tests/logs/RegressionTests_gaeac6.log | 573 +++++++++++++------------- 1 file changed, 286 insertions(+), 287 deletions(-) diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 6bc814361f..e228d116ad 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,20 +1,20 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -d31b872fa3437a913f781ba9e4058c514d8d456c +b1937471fe0ef4580b44cd3a01d2754110ec8c7d 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) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 34d1eab8e432cedf8a81976e3b675b32f41b043f CDEPS-interface/CDEPS (cdeps0.4.17-304-g34d1eab) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b769849792dbe799dc1a2e29942864f880ee8445 FV3 (heads/develop) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 6e0467ad07a2231d298dc3be91a923c934354a7f FV3/ccpp/physics (EP4-1071-g6e0467ad) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,289 +38,288 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Ratko.Vasic/RT_RUNDIRS/Ratko.Vasic/FV3_RT/rt_3152614 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3091871 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 -* (-k) - KEEP RUN DIRECTORY * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:12, 08:46] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:08, 07:07](2027 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:12, 11:35] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:22, 09:38](1924 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:09, 10:18](1956 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:02, 04:42](1089 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:04, 11:11](1905 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:12, 11:49] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [11:30, 09:26](1918 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [26:13, 24:25] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [19:45, 17:35](1949 MB) - -PASS -- COMPILE 's2swa_intel' [10:18, 08:44] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:57, 09:08](2062 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:39, 09:09](2063 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:05, 04:57](1624 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:25, 09:09](2084 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:35, 04:58](1465 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:35](2252 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:50, 08:53](2056 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:28, 07:16](2012 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:09, 09:12](2062 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:10, 06:12](2438 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [06:51, 03:57](2666 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:18, 11:06](3583 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:38, 06:36](3398 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 05:11](1925 MB) - -PASS -- COMPILE 's2sw_intel' [10:18, 08:32] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:27, 04:49](1930 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:53, 07:54](1856 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:47] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:28, 14:06](2093 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:43] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:23, 05:58](1966 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:59] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:15, 03:13](1990 MB) - -PASS -- COMPILE 's2s_intel' [57:17, 55:52] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:42, 04:12](2874 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:58, 01:16](2881 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:48, 00:45](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:12, 09:20] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:26, 09:06](2060 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:12, 11:23] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:21, 17:53](1941 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:45, 08:59](1118 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:30, 20:58](1920 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:47] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:09, 20:06](1958 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:44] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:44, 02:34](530 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:40, 02:11](1433 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:16](1437 MB) -PASS -- TEST 'control_latlon_intel' [04:28, 02:12](1427 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:56, 02:14](1435 MB) -PASS -- TEST 'control_c48_intel' [10:11, 07:26](1570 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:41, 04:20](693 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:12, 07:29](1576 MB) -PASS -- TEST 'control_c192_intel' [10:06, 07:37](1694 MB) -PASS -- TEST 'control_c384_intel' [19:26, 16:25](1959 MB) -PASS -- TEST 'control_c384gdas_intel' [13:33, 09:56](1182 MB) -PASS -- TEST 'control_stochy_intel' [03:33, 01:24](492 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:25, 00:43](293 MB) -PASS -- TEST 'control_lndp_intel' [03:24, 01:23](490 MB) -PASS -- TEST 'control_iovr4_intel' [03:25, 01:57](485 MB) -PASS -- TEST 'control_iovr5_intel' [03:26, 01:58](483 MB) -PASS -- TEST 'control_p8_intel' [05:15, 02:19](1722 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:35, 02:01](1728 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 02:27](1722 MB) -PASS -- TEST 'control_restart_p8_intel' [03:52, 01:21](874 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:46, 02:25](1722 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:47, 01:19](884 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:44, 02:31](1716 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:46, 02:18](1802 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:36, 04:16](1723 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:30, 02:40](1778 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:43, 02:01](1734 MB) -PASS -- TEST 'merra2_thompson_intel' [04:35, 02:17](1727 MB) -PASS -- TEST 'regional_control_intel' [05:27, 03:23](877 MB) -PASS -- TEST 'regional_restart_intel' [03:34, 01:50](859 MB) -PASS -- TEST 'regional_decomp_intel' [05:26, 03:28](885 MB) -PASS -- TEST 'regional_2threads_intel' [04:22, 02:09](1017 MB) -PASS -- TEST 'regional_noquilt_intel' [05:25, 03:17](1204 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:53, 03:21](884 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:39, 03:23](863 MB) -PASS -- TEST 'regional_wofs_intel' [06:24, 04:23](1572 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 06:11] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [06:51, 04:50](867 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 02:50](1158 MB) -PASS -- TEST 'rap_decomp_intel' [06:47, 04:56](867 MB) -PASS -- TEST 'rap_2threads_intel' [06:29, 04:22](950 MB) -PASS -- TEST 'rap_restart_intel' [04:53, 02:31](744 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:55, 04:45](869 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:34, 05:00](866 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:34, 03:33](742 MB) -PASS -- TEST 'hrrr_control_intel' [04:51, 02:33](865 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 02:37](861 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:47, 02:17](1082 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:23](694 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:41, 04:42](862 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:27, 06:07](1822 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:27, 05:52](1813 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 05:53] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:35, 04:12](820 MB) -PASS -- TEST 'control_ras_intel' [04:23, 02:12](523 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:48] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:54, 07:29](1512 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:12, 06:15] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:53, 01:54](1722 MB) -PASS -- TEST 'regional_control_faster_intel' [05:40, 03:10](878 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:27] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:36, 01:33](1457 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:56, 01:28](1459 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:20, 02:05](661 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:26, 01:54](660 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:34, 02:51](962 MB) -PASS -- TEST 'control_ras_debug_intel' [03:20, 01:55](670 MB) -PASS -- TEST 'control_diag_debug_intel' [03:30, 01:49](1516 MB) -PASS -- TEST 'control_debug_p8_intel' [03:23, 01:45](1747 MB) -PASS -- TEST 'regional_debug_intel' [13:30, 11:11](888 MB) -PASS -- TEST 'rap_control_debug_intel' [05:24, 03:22](1039 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:20, 03:20](1036 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 03:19](1040 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 03:27](1040 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 03:19](1035 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:28, 03:35](1121 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 03:24](1040 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 03:25](1035 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:24, 03:20](1043 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:29, 03:22](1037 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:27, 03:19](1035 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 03:22](1039 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:29](1036 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 03:18](1037 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:28, 03:21](1041 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:26, 03:22](1035 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:01, 05:42](1041 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:04] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:38, 08:44](1540 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:52] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:42, 02:42](1033 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:37, 04:01](745 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:33, 02:12](743 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 03:44](796 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:52, 01:59](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 02:20](740 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:33, 03:03](645 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:12](623 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:44] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:50, 01:22](952 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:36, 00:50](1084 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:36, 00:55](824 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:12, 05:49] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:00, 02:43](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:05] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 03:15](919 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:26, 03:16](916 MB) -PASS -- TEST 'conus13km_debug_intel' [10:48, 08:49](1004 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [11:35, 09:14](672 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:48, 05:14](1135 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:47, 09:05](1071 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:01] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 03:18](943 MB) - -PASS -- COMPILE 'hafsw_intel' [09:12, 07:33] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:10, 03:37](714 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:30, 03:01](1075 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:20, 04:48](789 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:10, 07:56](816 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [11:02, 08:36](835 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:54, 03:31](471 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:37, 04:30](483 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:28, 01:47](400 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:23, 04:37](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:41, 02:32](499 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:47, 02:24](501 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:21, 03:01](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:48, 01:00](429 MB) -PASS -- TEST 'gnv1_nested_intel' [04:59, 02:55](1709 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:17] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:33, 08:21](597 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:12, 07:24] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:56, 05:04](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:56, 05:08](798 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:40] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:03, 03:49](792 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 07:12] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:12, 04:18](769 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:56, 04:22](754 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:41, 10:59](890 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:12, 05:04] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:26, 01:41](762 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:02](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 01:36](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:37](638 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:36](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:40](750 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 01:41](750 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 01:35](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:39, 04:09](705 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:29, 04:02](686 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 01:42](762 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 02:43](1967 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 02:46](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [17:13, 15:41] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 03:43](737 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 05:06] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 01:41](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:36] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:23, 01:01](315 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:36](461 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:39] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:37, 02:27](1796 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 06:08] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:31, 05:19](1787 MB) - -PASS -- COMPILE 'atml_intel' [08:12, 06:42] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:08, 03:52](1890 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:06, 03:53](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:56, 02:13](1041 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:58] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:35, 04:08](1923 MB) - -PASS -- COMPILE 'atmw_intel' [08:12, 07:03] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:29, 01:16](1755 MB) - -PASS -- COMPILE 'atmaero_intel' [07:11, 05:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:31, 02:45](1946 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:37, 03:15](1606 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:28, 03:18](1618 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:05] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [15:55, 13:25](4442 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:33] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:54, 06:06](826 MB) +PASS -- COMPILE 's2swa_32bit_intel' [10:23, 08:19] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:31, 07:06](2034 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [02:24, 00:57] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [11:31, 09:39](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:30, 10:14](1961 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [06:29, 04:41](1087 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:30, 11:13](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [45:20, 43:13] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [11:21, 09:22](1916 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 03:53] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [19:30, 17:35](1953 MB) + +PASS -- COMPILE 's2swa_intel' [10:11, 08:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:35, 09:15](2065 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:40, 09:21](2065 MB) +PASS -- TEST 'cpld_restart_p8_intel' [18:32, 04:56](1627 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:33, 09:24](2084 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [18:31, 05:01](1457 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:31, 08:39](2257 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:32, 08:57](2066 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:31, 07:22](2016 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:33, 09:14](2066 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [25:55, 06:01](2439 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:51, 03:56](2667 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [32:42, 11:22](3587 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:40, 06:30](3435 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:29, 05:09](1919 MB) + +PASS -- COMPILE 's2sw_intel' [10:11, 08:20] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:26, 04:51](1935 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:27, 07:56](1859 MB) + +PASS -- COMPILE 's2swa_debug_intel' [33:12, 31:26] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:28, 14:15](2090 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:49] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:28, 05:56](1957 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:15, 08:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:31, 03:14](1989 MB) + +PASS -- COMPILE 's2s_intel' [01:15, 59:59] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:19, 04:12](2876 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:24, 01:17](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:20, 00:49](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [32:19, 30:57] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:30, 09:04](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:12, 11:06] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:28, 17:46](1930 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:27, 09:01](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:28, 20:54](1913 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 03:53] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:28, 19:59](1969 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:39] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [15:20, 02:33](535 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [20:27, 02:15](1429 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:29, 02:08](1441 MB) +PASS -- TEST 'control_latlon_intel' [19:26, 02:04](1436 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:31, 02:12](1426 MB) +PASS -- TEST 'control_c48_intel' [25:28, 07:27](1571 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [19:21, 04:15](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [25:29, 07:27](1571 MB) +PASS -- TEST 'control_c192_intel' [26:33, 07:42](1701 MB) +PASS -- TEST 'control_c384_intel' [36:41, 16:35](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [30:57, 10:00](1176 MB) +PASS -- TEST 'control_stochy_intel' [16:20, 01:10](486 MB) +PASS -- TEST 'control_stochy_restart_intel' [11:15, 00:42](290 MB) +PASS -- TEST 'control_lndp_intel' [17:20, 01:07](486 MB) +PASS -- TEST 'control_iovr4_intel' [19:20, 01:47](484 MB) +PASS -- TEST 'control_iovr5_intel' [17:20, 01:42](483 MB) +PASS -- TEST 'control_p8_intel' [20:31, 02:21](1727 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:28, 02:01](1720 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [21:25, 02:21](1728 MB) +PASS -- TEST 'control_restart_p8_intel' [11:24, 01:22](873 MB) +PASS -- TEST 'control_noqr_p8_intel' [20:21, 02:18](1727 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:21, 01:22](866 MB) +PASS -- TEST 'control_decomp_p8_intel' [20:20, 02:25](1722 MB) +PASS -- TEST 'control_2threads_p8_intel' [17:19, 02:13](1806 MB) +PASS -- TEST 'control_p8_lndp_intel' [17:20, 04:10](1724 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:21, 02:37](1777 MB) +PASS -- TEST 'control_p8_mynn_intel' [13:22, 02:13](1732 MB) +PASS -- TEST 'merra2_thompson_intel' [12:21, 02:14](1727 MB) +PASS -- TEST 'regional_control_intel' [10:20, 03:20](878 MB) +PASS -- TEST 'regional_restart_intel' [06:19, 01:51](861 MB) +PASS -- TEST 'regional_decomp_intel' [09:20, 03:32](875 MB) +PASS -- TEST 'regional_2threads_intel' [11:20, 02:09](1035 MB) +PASS -- TEST 'regional_noquilt_intel' [12:19, 03:16](1210 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [14:22, 03:22](881 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:18, 03:18](874 MB) +PASS -- TEST 'regional_wofs_intel' [14:20, 04:25](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [08:12, 06:10] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:19, 04:47](865 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:33, 02:51](1159 MB) +PASS -- TEST 'rap_decomp_intel' [11:20, 05:00](869 MB) +PASS -- TEST 'rap_2threads_intel' [10:19, 04:22](948 MB) +PASS -- TEST 'rap_restart_intel' [04:20, 02:29](745 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:18, 04:48](866 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:20, 04:57](866 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 03:33](744 MB) +PASS -- TEST 'hrrr_control_intel' [07:19, 02:34](860 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:19, 02:36](859 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:19, 02:18](1079 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:24](693 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:19, 04:43](862 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:17, 06:07](1819 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 05:54](1812 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 06:06] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:17, 04:12](821 MB) +PASS -- TEST 'control_ras_intel' [04:14, 02:26](518 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:45] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:25, 07:31](1517 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 06:00] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:23, 01:54](1725 MB) +PASS -- TEST 'regional_control_faster_intel' [05:19, 03:11](874 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:47] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:33](1455 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:22, 01:29](1457 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:14, 02:03](662 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:15, 01:54](660 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:18, 02:49](963 MB) +PASS -- TEST 'control_ras_debug_intel' [04:14, 01:54](665 MB) +PASS -- TEST 'control_diag_debug_intel' [03:20, 01:48](1517 MB) +PASS -- TEST 'control_debug_p8_intel' [04:20, 01:50](1749 MB) +PASS -- TEST 'regional_debug_intel' [13:22, 11:20](892 MB) +PASS -- TEST 'rap_control_debug_intel' [05:15, 03:20](1039 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:19](1037 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 03:26](1040 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:14, 03:21](1041 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:19](1038 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:17, 03:33](1125 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:14, 03:26](1043 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:27](1038 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:20](1039 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 03:20](1038 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:14, 03:17](1036 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:21](1037 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:14, 05:22](1037 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:20](1033 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:16, 03:21](1042 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:16, 03:20](1039 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:24, 05:40](1043 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 03:13] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:21, 08:45](1545 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:52] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:30, 02:41](1036 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:18, 04:01](747 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 02:19](747 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:19, 03:44](800 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:17, 01:59](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:17, 02:20](745 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:30, 03:01](649 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:16, 01:12](628 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:39] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:25, 01:22](952 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:16, 00:44](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:19, 00:52](824 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:53] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:20, 02:44](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:16] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:17](919 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:14](916 MB) +PASS -- TEST 'conus13km_debug_intel' [11:23, 08:59](1003 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [11:24, 09:03](672 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [07:22, 05:21](1135 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:22, 09:04](1072 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:01] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:14, 03:19](944 MB) + +PASS -- COMPILE 'hafsw_intel' [09:12, 07:19] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:41, 03:34](718 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:16, 02:53](1070 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:46, 04:44](779 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [11:41, 08:02](811 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [11:47, 08:41](831 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:29, 03:31](484 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 04:23](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:23, 01:44](400 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:56, 04:42](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:32](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:25, 02:22](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:29, 02:56](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:19, 00:59](429 MB) +PASS -- TEST 'gnv1_nested_intel' [04:41, 02:56](1698 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:18] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:28, 08:14](605 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:21] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:33, 05:09](637 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:38, 05:13](797 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:18, 14:21] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:36, 03:50](794 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 07:34] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:42, 04:20](772 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:43, 04:22](751 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:35, 10:53](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:07] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:13, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:13, 01:02](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 01:36](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 01:39](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:46](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 01:41](764 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:13, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:45](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:27, 03:58](705 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:38, 04:02](684 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 01:56](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 02:43](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 02:46](2029 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:22] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:13, 03:46](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 04:55] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:13, 01:41](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 01:00](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:50](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](460 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 06:28] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:24, 02:26](1783 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:10, 06:04] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:22, 05:24](1788 MB) + +PASS -- COMPILE 'atml_intel' [08:10, 06:35] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:25, 04:13](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:23, 03:55](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:17, 02:11](1045 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:12, 04:00] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:23, 04:29](1922 MB) + +PASS -- COMPILE 'atmw_intel' [09:12, 07:16] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:21, 01:17](1764 MB) + +PASS -- COMPILE 'atmaero_intel' [07:10, 06:03] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:23, 02:58](1943 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:27, 03:51](1600 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:20, 03:19](1610 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:18] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:49, 13:29](4442 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:33] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:20, 06:02](833 MB) SYNOPSIS: -Starting Date/Time: 20241202 18:22:23 -Ending Date/Time: 20241202 20:18:12 -Total Time: 01h:57m:39s +Starting Date/Time: 20241217 15:25:48 +Ending Date/Time: 20241217 17:54:03 +Total Time: 02h:28m:37s Compiles Completed: 42/42 Tests Completed: 187/187 From dba7cbf7f0f774c87d31ac7a7cfdca91b7ed61ca Mon Sep 17 00:00:00 2001 From: jkbk2004 Date: Wed, 18 Dec 2024 10:14:04 -0500 Subject: [PATCH 27/28] revert back complier version update on gaeac5: RT pased --- modulefiles/ufs_gaeac5.intel.lua | 4 +- modulefiles/ufs_gaeac5.intelllvm.lua | 5 +- tests/logs/RegressionTests_gaeac5.log | 591 +++++++++++++------------- 3 files changed, 299 insertions(+), 301 deletions(-) diff --git a/modulefiles/ufs_gaeac5.intel.lua b/modulefiles/ufs_gaeac5.intel.lua index 18179b8d4b..4641f2dbfd 100644 --- a/modulefiles/ufs_gaeac5.intel.lua +++ b/modulefiles/ufs_gaeac5.intel.lua @@ -1,9 +1,9 @@ help([[ This module loads libraries required for building and running UFS Weather Model - on the NOAA RDHPC machine Gaea C5 using Intel-2023.2.0. + on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. ]]) -whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5]===]) +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5 ]===]) prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") diff --git a/modulefiles/ufs_gaeac5.intelllvm.lua b/modulefiles/ufs_gaeac5.intelllvm.lua index f6b9abf904..4bfddf2e90 100644 --- a/modulefiles/ufs_gaeac5.intelllvm.lua +++ b/modulefiles/ufs_gaeac5.intelllvm.lua @@ -1,6 +1,6 @@ help([[ This module loads libraries required for building and running UFS Weather Model - on the NOAA RDHPC machine Gaea C5 using Intel-2023.2.0. + on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. ]]) whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5]===]) @@ -27,8 +27,7 @@ load(pathJoin("nccmp", nccmp_ver)) unload("darshan-runtime") unload("cray-libsci") -unload("intel-classic/2023.2.0") -load("intel-oneapi/2023.2.0") +load("intel-classic/2023.2.0") setenv("I_MPI_CC", "icx") setenv("I_MPI_CXX", "icpx") diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index c1de3958b8..f6097ed8bc 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,15 +1,15 @@ -====START OF GAEA REGRESSION TESTING LOG==== +====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -19498cc1894245fe8afe365dd87dbe5d8862b35f +b1937471fe0ef4580b44cd3a01d2754110ec8c7d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + 34d1eab8e432cedf8a81976e3b675b32f41b043f CDEPS-interface/CDEPS (cdeps0.4.17-304-g34d1eab) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) @@ -39,304 +39,303 @@ 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-20241212 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1810864 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1945712 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:12, 14:10] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:29, 11:27](3185 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 18:16] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:50, 13:44](1897 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:48, 14:25](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:49, 06:27](1073 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:51, 15:05](1877 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:12, 18:26] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:36, 13:30](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:57] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:18, 27:56](1934 MB) - -PASS -- COMPILE 's2swa_intel' [16:12, 14:17] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:35, 14:49](3210 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:33, 14:50](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:55, 08:42](3136 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:20, 14:49](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:59, 08:33](3156 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:28, 13:11](3465 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:28, 14:46](3209 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:28, 12:09](3155 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:33, 14:52](3210 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:09, 09:43](3492 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:51, 06:36](3596 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:48, 19:05](4262 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:17, 11:48](4353 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:27, 08:46](3194 MB) - -PASS -- COMPILE 's2sw_intel' [15:12, 13:18] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:42, 07:06](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:36, 12:10](1964 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 07:48] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:48, 21:28](3266 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 06:57] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:59, 09:02](1939 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:13, 12:49] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:28, 04:53](1975 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 11:49] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:30, 05:34](2869 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 01:42](2872 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:51, 01:09](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:12, 14:44] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:25, 14:55](3214 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:12, 17:50] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:48, 24:08](1912 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:51, 12:21](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:49, 28:23](1891 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:13, 10:09] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:51, 29:53](1942 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 12:31] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:20, 03:37](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:44, 03:09](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:26, 03:12](1566 MB) -PASS -- TEST 'control_latlon_intel' [05:26, 03:10](1559 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:08](1558 MB) -PASS -- TEST 'control_c48_intel' [11:38, 10:00](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:41](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:36, 09:55](1573 MB) -PASS -- TEST 'control_c192_intel' [12:33, 11:01](1690 MB) -PASS -- TEST 'control_c384_intel' [25:51, 23:36](1970 MB) -PASS -- TEST 'control_c384gdas_intel' [17:19, 14:26](1170 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:49](610 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](419 MB) -PASS -- TEST 'control_lndp_intel' [03:21, 01:35](607 MB) -PASS -- TEST 'control_iovr4_intel' [04:31, 02:23](607 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:29](609 MB) -PASS -- TEST 'control_p8_intel' [05:50, 03:30](1853 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:08](1845 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:50, 03:29](1845 MB) -PASS -- TEST 'control_restart_p8_intel' [03:46, 01:53](1002 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:30](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:54](990 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:50, 03:33](1837 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:34, 03:10](1929 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:26, 06:07](1846 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:37, 03:58](1902 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:36, 03:03](1847 MB) -PASS -- TEST 'merra2_thompson_intel' [05:37, 03:18](1843 MB) -PASS -- TEST 'regional_control_intel' [06:25, 04:36](877 MB) -PASS -- TEST 'regional_restart_intel' [04:58, 02:34](861 MB) -PASS -- TEST 'regional_decomp_intel' [06:30, 04:51](878 MB) -PASS -- TEST 'regional_2threads_intel' [04:38, 03:01](1015 MB) -PASS -- TEST 'regional_noquilt_intel' [06:33, 04:44](1210 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:32, 04:38](880 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:42](876 MB) -PASS -- TEST 'regional_wofs_intel' [09:24, 06:35](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [13:12, 12:04] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:40, 06:44](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:58](1169 MB) -PASS -- TEST 'rap_decomp_intel' [08:40, 07:01](991 MB) -PASS -- TEST 'rap_2threads_intel' [07:39, 06:03](1072 MB) -PASS -- TEST 'rap_restart_intel' [05:33, 03:26](874 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:40, 06:38](985 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:40, 06:51](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 04:54](875 MB) -PASS -- TEST 'hrrr_control_intel' [05:35, 03:34](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:41](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:04](1067 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:28, 01:55](820 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:40, 06:37](987 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 08:29](1949 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:18](1932 MB) - -PASS -- COMPILE 'csawmg_intel' [12:12, 10:10] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:27, 06:30](944 MB) -PASS -- TEST 'control_ras_intel' [05:19, 03:20](644 MB) - -PASS -- COMPILE 'wam_intel' [12:14, 10:24] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 11:38](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:13, 17:12] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:01, 02:55](1841 MB) -PASS -- TEST 'regional_control_faster_intel' [06:36, 04:28](885 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 10:10] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:39, 02:28](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:14, 02:23](1582 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:57, 03:06](782 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:51](779 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:25, 04:18](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:46](787 MB) -PASS -- TEST 'control_diag_debug_intel' [04:34, 02:46](1638 MB) -PASS -- TEST 'control_debug_p8_intel' [04:29, 02:44](1876 MB) -PASS -- TEST 'regional_debug_intel' [18:28, 17:01](891 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 05:02](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:53](1161 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 05:07](1162 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:21, 05:20](1159 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:33](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:56, 05:31](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:04, 05:02](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:02, 05:01](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:06, 04:56](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:02, 04:58](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:02, 04:51](1160 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:06, 04:55](1161 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:06, 08:01](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:01, 04:57](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:54, 04:58](1162 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:53, 05:02](1166 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:26](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:22] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:50, 13:03](1661 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 10:10] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:50, 03:46](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:30, 05:43](868 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 03:12](867 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:15](922 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:28, 02:41](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:19](867 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:27, 04:29](783 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:43](755 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:03] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:47, 01:58](1078 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:04](1060 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:57, 01:14](949 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:37] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 04:18](893 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:56] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:57](1043 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:51](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [15:47, 13:16](1126 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:01, 13:44](802 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:55, 07:55](1117 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:57, 13:33](1194 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:01] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:20](1071 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:31] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:11](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 04:25](1080 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:22, 07:31](742 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:20](774 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:19, 12:42](804 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:15](473 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:09, 06:35](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:40, 02:45](399 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:41, 07:30](497 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:40, 04:32](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:43, 03:51](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:44, 04:32](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:31](426 MB) -PASS -- TEST 'gnv1_nested_intel' [07:03, 04:53](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:11, 06:55] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 12:47](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:04] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:56, 07:31](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:58, 07:36](810 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 12:00] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:43, 05:57](812 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:53] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:08](734 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:04, 06:13](720 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:05, 21:12](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:20] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:13, 02:41](752 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:17, 02:16](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:54, 02:28](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:49, 02:30](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:49, 02:31](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:48, 02:36](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:48, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:35, 02:27](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:47, 06:04](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:43, 06:08](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:36](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:42](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:42](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:17] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:25](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 09:44] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:37](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:31] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:36, 02:37](315 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 01:56](463 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:50](462 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:42] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:21, 00:33](450 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:40, 00:33](250 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:21] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:56, 03:53](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 11:54] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:05, 08:38](1895 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 11:48] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:18, 06:44](1878 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:28, 06:55](1881 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:29, 03:40](1029 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:15, 06:11] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:08, 06:11](1908 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:01] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:51, 02:09](1878 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 11:31] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:08, 05:59](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:54, 06:35](2988 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:49, 06:46](2994 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:10, 07:48] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:12, 18:13](4447 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 10:51] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:29, 09:28](832 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [21:11, 19:56] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:51, 13:32](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:11, 09:19] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [29:10, 27:09](1927 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:18, 19:15] -PASS -- TEST 'cpld_control_sfs_intelllvm' [15:34, 13:10](1897 MB) - -PASS -- COMPILE 's2swa_intelllvm' [16:11, 14:37] -PASS -- TEST 'cpld_control_p8_intelllvm' [18:08, 15:18](3215 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:13, 13:29] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:18, 11:04](3181 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:14, 17:30] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:44, 13:18](1907 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:50, 14:20](1938 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:47, 06:33](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:44, 14:51](1885 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:14, 18:16] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:31, 13:16](1903 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:19] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:48, 27:16](1923 MB) + +PASS -- COMPILE 's2swa_intel' [15:13, 13:34] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:15, 14:19](3215 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:13, 14:23](3214 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:57, 07:51](3136 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:12, 14:22](3232 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:56, 07:59](3160 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:07, 12:55](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:09, 14:05](3208 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:09, 12:01](3158 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:13, 14:36](3215 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:39, 09:36](3490 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:00, 06:29](3600 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:13, 18:46](4256 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:57, 11:37](4354 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:06, 08:23](3195 MB) + +PASS -- COMPILE 's2sw_intel' [15:13, 13:28] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:54, 07:06](1907 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:57, 11:52](1973 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:04] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:55, 21:32](3264 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:09] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:46, 09:09](1945 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:13, 11:17] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:49, 04:46](1968 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 11:24] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:36, 05:32](2878 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 01:49](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:32, 01:00](2296 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:11, 13:36] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:56, 14:17](3209 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:24] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:46, 24:34](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:47, 12:23](1087 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:52, 28:20](1887 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 06:52] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:48, 29:36](1943 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:29] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:19, 04:11](656 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:28, 02:58](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 03:04](1567 MB) +PASS -- TEST 'control_latlon_intel' [04:24, 02:58](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:59](1556 MB) +PASS -- TEST 'control_c48_intel' [11:34, 09:56](1572 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:13, 05:41](696 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:31, 09:56](1575 MB) +PASS -- TEST 'control_c192_intel' [12:30, 10:46](1691 MB) +PASS -- TEST 'control_c384_intel' [25:49, 23:22](1966 MB) +PASS -- TEST 'control_c384gdas_intel' [17:15, 14:24](1176 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:40](612 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:59](418 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:34](609 MB) +PASS -- TEST 'control_iovr4_intel' [05:07, 02:22](609 MB) +PASS -- TEST 'control_iovr5_intel' [05:06, 02:24](609 MB) +PASS -- TEST 'control_p8_intel' [05:40, 03:17](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:54](1850 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:40, 03:17](1840 MB) +PASS -- TEST 'control_restart_p8_intel' [03:37, 01:52](1003 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:40, 03:15](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:37, 01:51](1009 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:21](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:51, 03:01](1925 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:52](1841 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:36, 03:44](1894 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:34, 02:51](1855 MB) +PASS -- TEST 'merra2_thompson_intel' [05:41, 03:53](1847 MB) +PASS -- TEST 'regional_control_intel' [06:27, 04:38](877 MB) +PASS -- TEST 'regional_restart_intel' [05:01, 02:31](863 MB) +PASS -- TEST 'regional_decomp_intel' [06:26, 04:47](876 MB) +PASS -- TEST 'regional_2threads_intel' [04:25, 02:59](1002 MB) +PASS -- TEST 'regional_noquilt_intel' [06:26, 04:30](1208 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:32, 04:36](879 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:46](876 MB) +PASS -- TEST 'regional_wofs_intel' [09:24, 06:30](1573 MB) + +PASS -- COMPILE 'rrfs_intel' [11:12, 10:07] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:36, 06:41](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:48, 03:56](1169 MB) +PASS -- TEST 'rap_decomp_intel' [08:36, 06:55](989 MB) +PASS -- TEST 'rap_2threads_intel' [07:34, 06:01](1069 MB) +PASS -- TEST 'rap_restart_intel' [05:32, 03:27](875 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:36, 06:31](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 07:00](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:32, 04:58](877 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 03:32](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 03:35](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:33, 03:06](1064 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:54](816 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:37, 06:32](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 08:27](1946 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 08:19](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:26] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:29, 06:23](945 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:13](644 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:49, 11:24](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 09:31] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:34, 02:44](1845 MB) +PASS -- TEST 'regional_control_faster_intel' [06:29, 04:24](879 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 10:03] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:31, 02:16](1574 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:36, 02:12](1581 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:21, 03:02](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:42](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:28, 04:11](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:46](790 MB) +PASS -- TEST 'control_diag_debug_intel' [05:09, 02:38](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [05:05, 02:28](1872 MB) +PASS -- TEST 'regional_debug_intel' [17:27, 16:10](900 MB) +PASS -- TEST 'rap_control_debug_intel' [06:19, 04:55](1165 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:19, 05:04](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:55](1164 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:53](1160 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:51](1165 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:24, 05:04](1246 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:19, 05:20](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 05:20](1166 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:24](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 05:09](1162 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 05:06](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:57, 04:50](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:37, 07:46](1158 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:16, 04:52](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:39, 05:00](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:31, 04:51](1166 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:39, 08:53](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 06:05] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:48, 12:42](1668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:54, 03:47](1040 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:30, 05:31](866 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:30, 03:00](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:13](921 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:27, 02:41](917 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:07](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:28, 04:12](777 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:41](753 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:04] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:48, 01:55](1075 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:59](1063 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:14](953 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:12] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 04:01](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:12, 07:46] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:44](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:41](1040 MB) +PASS -- TEST 'conus13km_debug_intel' [14:47, 13:10](1125 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 13:14](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 07:43](1116 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:46, 13:10](1192 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:17] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:59](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 13:29] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:06, 04:59](712 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:25, 04:17](1074 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:12, 07:31](745 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:12](780 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:13, 12:36](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:21](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:10, 06:42](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 02:41](399 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:42, 07:27](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:43](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:43, 03:29](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:47, 04:34](586 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:29](424 MB) +PASS -- TEST 'gnv1_nested_intel' [07:13, 04:30](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:23] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:47, 12:59](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:05] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:53, 07:30](629 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:01, 07:36](809 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:02] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:03, 05:53](808 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:08] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:01, 06:07](736 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:07, 06:09](716 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:09, 20:13](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:11, 09:41] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 02:41](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:34](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:28](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:28](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:30](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:35](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:27](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:50, 06:04](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:47, 06:12](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:36](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:39](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:08] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:25](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:17, 10:53] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:36](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 02:40] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:24](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 01:08](463 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:50](461 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 02:54] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:36, 00:29](448 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:39, 00:16](250 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:54] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:43, 03:32](1918 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:59] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:41, 07:52](1900 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 11:03] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:43, 06:35](1882 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:43, 06:22](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:31, 04:22](1028 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:11, 07:46] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:40, 06:06](1913 MB) + +PASS -- COMPILE 'atmw_intel' [12:12, 11:01] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:34, 01:47](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 10:22] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:39, 05:02](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:41, 05:23](2989 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:36, 05:24](2998 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 07:07] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:09, 18:12](4439 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:36] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:28, 09:30](828 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [19:12, 17:46] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [15:50, 13:31](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [08:10, 06:52] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [28:48, 27:08](1926 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [19:13, 17:29] +PASS -- TEST 'cpld_control_sfs_intelllvm' [15:32, 13:20](1894 MB) + +PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:19] +PASS -- TEST 'cpld_control_p8_intelllvm' [16:59, 14:16](3216 MB) SYNOPSIS: -Starting Date/Time: 20241213 14:40:18 -Ending Date/Time: 20241213 16:23:10 -Total Time: 01h:43m:50s +Starting Date/Time: 20241218 08:20:58 +Ending Date/Time: 20241218 10:01:14 +Total Time: 01h:41m:12s Compiles Completed: 47/47 Tests Completed: 193/193 @@ -346,4 +345,4 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: SUCCESS -====END OF GAEA REGRESSION TESTING LOG==== +====END OF GAEAC5 REGRESSION TESTING LOG==== From bdb2a6af3a35de784866ad2d1d2bbda9ea235604 Mon Sep 17 00:00:00 2001 From: Jong Kim Date: Wed, 18 Dec 2024 15:37:45 +0000 Subject: [PATCH 28/28] sanity check on hera: RT passed and no impact on other machines --- tests/logs/RegressionTests_hera.log | 749 ++++++++++++++-------------- 1 file changed, 374 insertions(+), 375 deletions(-) diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index f15a14c9f6..a9755fd5e0 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,13 +1,13 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -19498cc1894245fe8afe365dd87dbe5d8862b35f +b1937471fe0ef4580b44cd3a01d2754110ec8c7d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 51f8cd20c15fe39ef1168d59d5077812b6508544 CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-10) + 34d1eab8e432cedf8a81976e3b675b32f41b043f CDEPS-interface/CDEPS (cdeps0.4.17-304-g34d1eab) ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 507ca48f4586fbeb7b0e23e5cfa9321bc3f02a1d CMEPS-interface/CMEPS (cmeps_v0.4.1-3103-g507ca48f) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) @@ -27,388 +27,387 @@ 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-20241212 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1726892 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3124958 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:18, 11:45](3318 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 15:54] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:09, 19:51](1966 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:30, 20:50](2172 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:27, 08:19](1273 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:05, 23:07](1871 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 15:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:49, 19:36](1955 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:55] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:57, 26:28](1922 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 13:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:24, 15:28](3358 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:32, 14:11](3354 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:29, 07:30](3253 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:16, 14:23](3346 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:32, 07:32](3278 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:06, 13:30](3638 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:06, 14:15](3340 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:20, 11:34](3225 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:23, 14:10](3362 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 10:35](3522 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:05, 07:01](3615 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:30, 16:33](4289 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:59, 09:33](4381 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:11, 07:22](3301 MB) - -PASS -- COMPILE 's2sw_intel' [14:12, 12:20] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:10, 09:18](1989 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:20, 11:12](2062 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 05:52] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:05, 22:53](3394 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:51] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:55, 10:05](2010 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:28] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:02, 04:26](2021 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 11:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:52](3039 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:44, 02:25](3044 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:42, 01:25](2479 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:41] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:19, 13:45](3329 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:04] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:12, 28:09](2019 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:23, 14:08](1256 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:13, 33:15](1923 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:13, 05:55] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:10, 30:14](1925 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:13, 11:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:21](699 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:41, 03:15](1593 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:18](1593 MB) -PASS -- TEST 'control_latlon_intel' [05:38, 03:12](1581 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:45, 03:17](1583 MB) -PASS -- TEST 'control_c48_intel' [13:43, 11:34](1715 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 06:32](858 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:41, 11:36](1721 MB) -PASS -- TEST 'control_c192_intel' [13:57, 12:03](1766 MB) -PASS -- TEST 'control_c384_intel' [18:01, 14:10](1996 MB) -PASS -- TEST 'control_c384gdas_intel' [12:58, 08:10](1376 MB) -PASS -- TEST 'control_stochy_intel' [03:22, 01:38](653 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:59](504 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:33](658 MB) -PASS -- TEST 'control_iovr4_intel' [04:25, 02:29](646 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:30](648 MB) -PASS -- TEST 'control_p8_intel' [05:56, 03:43](1865 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 03:05](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:39](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [03:49, 02:07](1130 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:39](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:58, 02:06](1156 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:52, 03:45](1866 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:49, 03:30](1952 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:38](1876 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:12](1950 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:56, 03:08](1897 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:10, 12:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:38, 11:44](3299 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:20] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:05, 19:40](1975 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:20, 20:39](2164 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 08:13](1280 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:06, 23:10](1881 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 15:47] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:44, 19:20](1964 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:09] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:01, 26:37](1918 MB) + +PASS -- COMPILE 's2swa_intel' [14:10, 13:00] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:39, 15:24](3339 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:07](3316 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:18, 07:26](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:33, 14:05](3376 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:23, 07:26](3271 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:30, 13:12](3639 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:30, 14:06](3337 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:34, 11:33](3221 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:41, 14:04](3326 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:39, 10:22](3521 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:19](3621 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [31:09, 15:58](4293 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:46, 09:04](4332 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:34, 07:17](3283 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:14] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:35, 09:23](1989 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:36, 10:57](2071 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 06:07] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:17, 22:38](3407 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:40] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:58, 09:58](2005 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:10, 11:15] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 04:22](2022 MB) + +PASS -- COMPILE 's2s_intel' [13:10, 11:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:49, 07:53](3031 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:45, 02:25](3026 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:40, 01:27](2484 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:42] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:40, 13:27](3340 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:23] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:16, 27:56](2021 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:23, 13:48](1268 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 33:08](1929 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:40] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:07, 29:46](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:22](708 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:44, 03:24](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:45, 03:19](1588 MB) +PASS -- TEST 'control_latlon_intel' [05:37, 03:11](1592 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:44, 03:14](1583 MB) +PASS -- TEST 'control_c48_intel' [13:48, 11:37](1724 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:26, 06:32](849 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:53, 11:39](1721 MB) +PASS -- TEST 'control_c192_intel' [14:06, 12:00](1767 MB) +PASS -- TEST 'control_c384_intel' [17:03, 13:43](1977 MB) +PASS -- TEST 'control_c384gdas_intel' [13:15, 08:09](1375 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:39](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:26, 01:02](496 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:32](660 MB) +PASS -- TEST 'control_iovr4_intel' [04:26, 02:28](656 MB) +PASS -- TEST 'control_iovr5_intel' [04:27, 02:27](651 MB) +PASS -- TEST 'control_p8_intel' [09:53, 03:45](1883 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:54, 03:09](1892 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:54, 03:40](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [04:51, 02:10](1128 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:51, 03:42](1865 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:04, 02:16](1175 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:46, 03:49](1840 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:46, 03:32](1962 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:40, 06:45](1880 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:55, 04:14](1948 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:56, 03:20](1905 MB) PASS -- TEST 'merra2_thompson_intel' [05:49, 03:26](1896 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:29](1115 MB) -PASS -- TEST 'regional_restart_intel' [05:41, 02:58](1102 MB) -PASS -- TEST 'regional_decomp_intel' [07:33, 05:45](1121 MB) -PASS -- TEST 'regional_2threads_intel' [05:35, 03:35](1117 MB) -PASS -- TEST 'regional_noquilt_intel' [07:42, 05:19](1425 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:26](1119 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:28](1126 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:02](1895 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:12] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:41, 07:53](1113 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 04:18](1263 MB) -PASS -- TEST 'rap_decomp_intel' [10:37, 08:15](1036 MB) -PASS -- TEST 'rap_2threads_intel' [09:37, 07:24](1185 MB) -PASS -- TEST 'rap_restart_intel' [05:47, 04:05](1100 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:40, 08:05](1107 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:14](1041 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:48, 05:56](1126 MB) -PASS -- TEST 'hrrr_control_intel' [06:42, 04:01](1044 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:40, 04:09](1031 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:43](1094 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:10](997 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:54, 07:49](1098 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:32, 09:32](1986 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:29, 09:15](2061 MB) - -PASS -- COMPILE 'csawmg_intel' [11:15, 10:07] -PASS -- TEST 'control_csawmg_intel' [10:38, 06:23](1020 MB) -PASS -- TEST 'control_ras_intel' [07:24, 03:20](755 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:07] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:50, 11:28](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:56, 02:48](1889 MB) -PASS -- TEST 'regional_control_faster_intel' [08:39, 04:58](1118 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:13, 07:32] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:18](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:52, 02:18](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:09](827 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:45](830 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:27](1135 MB) -PASS -- TEST 'control_ras_debug_intel' [04:25, 02:50](837 MB) -PASS -- TEST 'control_diag_debug_intel' [05:55, 02:55](1692 MB) -PASS -- TEST 'control_debug_p8_intel' [05:48, 02:45](1907 MB) -PASS -- TEST 'regional_debug_intel' [19:37, 17:49](1102 MB) -PASS -- TEST 'rap_control_debug_intel' [08:25, 05:00](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:24, 05:11](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:27, 05:00](1209 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 05:08](1218 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 05:04](1206 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:23](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:16](1222 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:25, 05:07](1219 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:05](1219 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 04:59](1215 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:01](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 05:02](1214 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:17](1207 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:27, 04:55](1218 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:03](1219 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:22, 05:11](1216 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:45, 08:54](1217 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:29] -PASS -- TEST 'control_csawmg_debug_gnu' [04:41, 02:27](730 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:40] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:54, 13:52](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:56](1137 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:43, 06:33](1057 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 03:27](997 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:41, 06:17](1098 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:33, 03:13](954 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:40](934 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:45, 04:59](1037 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:52](931 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:56, 02:03](1192 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:54](1108 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:11](1095 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:16](985 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:44] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 04:58](1097 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:04](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [15:55, 13:55](1230 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 14:30](922 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:42, 08:08](1160 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 14:12](1309 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:42] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:26, 05:13](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 11:36] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:33, 05:32](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:40, 07:32](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:41, 07:41](808 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 14:58](838 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:40, 18:46](880 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:43](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:31, 07:11](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:00, 02:54](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:54, 07:40](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 04:03](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:00, 04:10](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:28](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:14](399 MB) -PASS -- TEST 'gnv1_nested_intel' [07:36, 04:07](1724 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:06] ( 1462 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:00, 13:32](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:07, 10:25](656 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:17, 10:38](732 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:38, 08:14](673 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:58] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:19, 06:59](824 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:17, 07:04](806 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:30](1230 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:39] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:44](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:42](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:43](1029 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:45](1034 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:41](1045 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:44](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:45](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:36](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 06:25](1086 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:26, 06:29](1047 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:52](1152 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:04](2468 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:24, 03:59](2452 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:30] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 06:31](1079 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:32] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 02:48](1161 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:10] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 00:44](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:49](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:31](325 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:21] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:33, 00:31](565 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:16](461 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:54] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:02, 03:44](1979 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:55, 08:01](2007 MB) - -PASS -- COMPILE 'atml_intel' [12:12, 10:57] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:14, 04:26](1836 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:02, 04:19](1867 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:21](1100 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 05:55] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:53](1882 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:58] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:57](1918 MB) +PASS -- TEST 'regional_control_intel' [09:32, 05:31](1125 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 02:53](1101 MB) +PASS -- TEST 'regional_decomp_intel' [09:33, 05:43](1113 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 03:25](1110 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:25](1413 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:26](1121 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 05:30](1128 MB) +PASS -- TEST 'regional_wofs_intel' [08:38, 06:57](1898 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:25] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:41, 07:52](1109 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 04:16](1270 MB) +PASS -- TEST 'rap_decomp_intel' [10:34, 08:14](1032 MB) +PASS -- TEST 'rap_2threads_intel' [09:36, 07:25](1188 MB) +PASS -- TEST 'rap_restart_intel' [05:42, 04:04](1093 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:41, 07:50](1104 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:41, 08:10](1031 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:43, 05:54](1128 MB) +PASS -- TEST 'hrrr_control_intel' [06:38, 04:13](1041 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:35, 04:09](1031 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:40, 03:42](1098 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:27, 02:09](994 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:46, 07:43](1109 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:29](1973 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:13](2067 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:49] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:12](1016 MB) +PASS -- TEST 'control_ras_intel' [06:22, 03:19](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:02] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:49, 11:19](1656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:13] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:48, 02:45](1866 MB) +PASS -- TEST 'regional_control_faster_intel' [07:35, 04:50](1117 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:32] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 02:13](1621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:12](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:00](830 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:46](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:17](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [04:27, 02:46](834 MB) +PASS -- TEST 'control_diag_debug_intel' [04:53, 02:46](1685 MB) +PASS -- TEST 'control_debug_p8_intel' [04:51, 02:40](1907 MB) +PASS -- TEST 'regional_debug_intel' [19:47, 17:54](1098 MB) +PASS -- TEST 'rap_control_debug_intel' [07:29, 05:07](1219 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:31, 04:54](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:55](1216 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 05:01](1213 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 04:59](1217 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:13](1298 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:14](1216 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 05:20](1215 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:24, 05:07](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:56](1214 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:54](1220 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:57](1213 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:05](1210 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 05:04](1214 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 04:59](1215 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:59](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:40, 08:50](1222 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:11, 04:18] +PASS -- TEST 'control_csawmg_debug_gnu' [05:33, 02:23](716 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:11, 04:48] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:49, 13:58](1670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 03:58](1141 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:40, 06:33](1074 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:36, 03:26](990 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:33, 06:16](1107 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:33, 03:15](959 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:28, 03:37](921 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 05:05](1031 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:28, 01:51](921 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:55, 02:00](1198 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:45, 00:49](1107 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:44, 01:21](1079 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:41, 04:19](984 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:57] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:25, 05:01](1095 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:23, 04:57](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [18:51, 13:49](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:50, 14:08](927 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:43, 08:03](1158 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:45, 14:00](1301 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:28] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:25, 05:04](1133 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 11:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:21, 04:59](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:34, 05:53](1113 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:22, 07:03](832 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:19, 14:58](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:29, 18:43](872 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:34](490 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 06:50](509 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:44](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:29, 07:23](480 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 03:45](521 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:01, 03:31](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:08](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:09](402 MB) +PASS -- TEST 'gnv1_nested_intel' [06:28, 04:01](1731 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:12, 05:01] ( 1462 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:53, 13:25](581 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:14, 11:33] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:00, 10:12](623 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:04, 10:16](727 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:31] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:57, 08:09](685 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:10, 10:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:27, 06:32](823 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 06:38](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:04, 16:25](1219 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:11, 06:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:49](1160 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:42](1100 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:48](1022 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:42](1032 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:41](1030 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:47](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:47](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:42](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:26, 06:52](1071 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:25, 06:29](1044 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:15, 02:45](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 03:48](2463 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:23, 04:00](2447 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:10, 03:29] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1088 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 06:34] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:47](1174 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:29, 00:50](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:24, 00:52](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:32](327 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [06:10, 01:20] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:33, 00:52](561 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:43, 00:18](462 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 10:59] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:05, 03:42](1987 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 10:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:02, 08:03](1995 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 11:04] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:09, 04:21](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:06, 04:25](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 02:22](1100 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 05:47] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:03, 05:50](1880 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:58] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:57](1913 MB) PASS -- COMPILE 'atmaero_intel' [12:11, 10:35] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:01, 04:09](3191 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:55, 04:59](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 05:04](3103 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:44] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:31, 11:50](1124 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:41] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:41, 08:25](1051 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:12, 06:48] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:41, 04:56](983 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:27] -PASS -- TEST 'control_c48_gnu' [11:46, 09:39](1509 MB) -PASS -- TEST 'control_stochy_gnu' [05:25, 03:30](500 MB) -PASS -- TEST 'control_ras_gnu' [06:22, 04:56](503 MB) -PASS -- TEST 'control_p8_gnu' [07:53, 05:19](1447 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:47, 05:15](1447 MB) -PASS -- TEST 'control_flake_gnu' [12:25, 10:39](537 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:12, 04:16] -PASS -- TEST 'rap_control_gnu' [13:37, 11:31](807 MB) -PASS -- TEST 'rap_decomp_gnu' [13:33, 11:43](807 MB) -PASS -- TEST 'rap_2threads_gnu' [12:42, 10:32](917 MB) -PASS -- TEST 'rap_restart_gnu' [07:46, 05:56](573 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:27](806 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:44](839 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:45, 08:27](577 MB) -PASS -- TEST 'hrrr_control_gnu' [07:49, 05:55](801 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:42, 05:59](826 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:45, 05:21](902 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:39, 05:59](839 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:45, 03:13](558 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:33, 03:09](651 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:50, 11:11](805 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:12, 03:54] -PASS -- TEST 'control_csawmg_gnu' [10:42, 08:35](734 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 06:37] -PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:41](1268 MB) -PASS -- TEST 'regional_debug_gnu' [13:37, 11:41](743 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:27, 02:38](822 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:40](823 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:40](818 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:27, 02:35](817 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:55, 02:50](909 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:23, 04:08](819 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:29, 02:38](819 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:27, 02:39](816 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:24, 01:35](456 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:24, 01:45](448 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:42](1432 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:46](816 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:28, 02:47](821 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:42, 04:35](827 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:12, 02:25] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:06] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:52](697 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:38, 05:22](694 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:36, 09:12](742 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:34, 04:52](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:33, 05:23](692 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:35, 07:18](551 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:30, 02:44](530 MB) -PASS -- TEST 'conus13km_control_gnu' [06:03, 03:24](874 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:43, 05:45](869 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:45, 01:56](549 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:47] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:48, 06:14](723 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 06:35] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:29, 02:47](708 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:29, 02:38](707 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:55, 07:04](880 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:51, 07:07](567 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:45, 07:42](882 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:54](947 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:13, 06:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:40](727 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:29] - -PASS -- COMPILE 's2s_gnu' [17:13, 15:49] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:10, 18:56](1507 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:08] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:51] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:44, 31:31](1443 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:03] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:23] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:20, 03:07](697 MB) +PASS -- TEST 'atmaero_control_p8_intel' [07:01, 04:09](3197 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:57, 05:05](3094 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:48, 05:03](3103 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:47] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:57] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:35, 11:33](1123 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:51] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:56, 08:26](1056 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:10, 06:57] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [07:42, 05:06](987 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:35] +PASS -- TEST 'control_c48_gnu' [11:44, 09:33](1510 MB) +PASS -- TEST 'control_stochy_gnu' [05:25, 03:27](493 MB) +PASS -- TEST 'control_ras_gnu' [06:24, 04:56](499 MB) +PASS -- TEST 'control_p8_gnu' [07:57, 05:13](1455 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:07, 05:12](1449 MB) +PASS -- TEST 'control_flake_gnu' [12:28, 10:33](538 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:26] +PASS -- TEST 'rap_control_gnu' [13:32, 11:34](811 MB) +PASS -- TEST 'rap_decomp_gnu' [14:33, 12:16](806 MB) +PASS -- TEST 'rap_2threads_gnu' [12:37, 10:50](924 MB) +PASS -- TEST 'rap_restart_gnu' [07:38, 05:52](579 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:35, 11:31](817 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:33, 12:12](810 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:37, 08:32](584 MB) +PASS -- TEST 'hrrr_control_gnu' [07:49, 06:02](837 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [08:33, 06:00](825 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:32, 05:29](909 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:35, 05:58](840 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 03:04](559 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 03:05](656 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:43, 11:17](803 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:55] +PASS -- TEST 'control_csawmg_gnu' [11:37, 08:37](738 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:28] +PASS -- TEST 'control_diag_debug_gnu' [05:04, 01:39](1266 MB) +PASS -- TEST 'regional_debug_gnu' [13:38, 11:07](739 MB) +PASS -- TEST 'rap_control_debug_gnu' [05:23, 02:40](816 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:24, 02:39](812 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [05:24, 02:41](817 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:40](820 MB) +PASS -- TEST 'rap_diag_debug_gnu' [05:44, 02:54](900 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:26, 04:12](814 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:46](814 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:45](810 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:36](452 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:46](450 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:36](1437 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:31, 02:39](816 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:43](816 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:22](819 MB) + +PASS -- COMPILE 'wam_debug_gnu' [06:11, 02:27] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 04:09] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:29, 09:51](698 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:28, 05:08](690 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:35, 09:03](744 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:39, 04:44](738 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:28, 05:21](693 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 07:19](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:24, 02:39](533 MB) +PASS -- TEST 'conus13km_control_gnu' [06:04, 03:14](864 MB) +PASS -- TEST 'conus13km_2threads_gnu' [08:44, 05:51](874 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:42, 01:53](560 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:12, 09:22] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:37, 05:59](720 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:12, 06:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:39](708 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:23, 02:34](706 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:53, 06:57](883 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:49, 06:56](576 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 07:29](885 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:40, 06:46](954 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:11, 06:25] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:35](734 MB) + +PASS -- COMPILE 's2swa_gnu' [22:11, 16:43] + +PASS -- COMPILE 's2s_gnu' [21:11, 15:51] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [21:16, 18:44](1497 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [08:11, 03:03] + +PASS -- COMPILE 's2sw_pdlib_gnu' [19:12, 15:51] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:03, 31:44](1465 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 02:57] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:45] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 03:04](700 MB) SYNOPSIS: -Starting Date/Time: 20241213 19:39:36 -Ending Date/Time: 20241213 22:33:23 -Total Time: 02h:54m:07s +Starting Date/Time: 20241217 16:48:26 +Ending Date/Time: 20241217 18:52:39 +Total Time: 02h:04m:33s Compiles Completed: 61/61 Tests Completed: 249/249