diff --git a/.cicd/Jenkinsfile b/.cicd/Jenkinsfile index d271ba32fb..1b3535b644 100644 --- a/.cicd/Jenkinsfile +++ b/.cicd/Jenkinsfile @@ -123,6 +123,17 @@ def generateStage(nodeLabel) { catch(err) { echo "Error: Post Results from ${nodeLabel}" } + sh ''' + export machine=${NODE_NAME} + export CHANGE_ID=${CHANGE_ID} + GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) + GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) + set +x + + echo "Testing concluded...removing label ${label} for ${machine} from ${GIT_URL}" + echo "https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels /${machine}-${label}" + curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/{$machine-RT,$machine-BL} + ''' } } } diff --git a/.cicd/scripts/disk_usage.sh b/.cicd/scripts/disk_usage.sh index 533897c8cb..ad2cfc6c13 100755 --- a/.cicd/scripts/disk_usage.sh +++ b/.cicd/scripts/disk_usage.sh @@ -25,10 +25,10 @@ echo "script_dir=${script_dir}" declare workspace if [[ -d "${WORKSPACE}/${UFS_PLATFORM}" ]]; then workspace="${WORKSPACE}/${UFS_PLATFORM}" - outfile="${4:-${workspace}-${UFS_PLATFORM}-${UFS_COMPILER}-disk-usage${STAGE_NAME%% *}.csv}" + outfile="${4:-${WORKSPACE}/${UFS_PLATFORM}-${UFS_COMPILER}-disk-usage${STAGE_NAME%% *}.csv}" else workspace="$(cd -- "${script_dir}/../.." && pwd)" - outfile="${4:-${workspace}/${UFS_PLATFORM}-${UFS_COMPILER}-disk-usage${STAGE_NAME%% *}.csv}" + outfile="${4:-${WORKSPACE}/${UFS_PLATFORM}-${UFS_COMPILER}-disk-usage${STAGE_NAME%% *}.csv}" fi echo "workspace=${workspace}" echo "outfile=${outfile}" diff --git a/.cicd/scripts/post_test_results.sh b/.cicd/scripts/post_test_results.sh index 26729ac123..b36aaa985b 100755 --- a/.cicd/scripts/post_test_results.sh +++ b/.cicd/scripts/post_test_results.sh @@ -41,19 +41,6 @@ function post_test() { GIT_URL=${GIT_URL:-"ufs-weather-model"} CHANGE_ID=${CHANGE_ID:-"develop"} - GIT_OWNER=$(echo ${GIT_URL} | cut -d '/' -f4) - GIT_REPO_NAME=$(echo ${GIT_URL} | cut -d '/' -f5 | cut -d '.' -f1) - -set +x - echo "GIT_URL=${GIT_URL}" - echo "CHANGE_ID=${CHANGE_ID}" - echo "GIT_OWNER=${GIT_OWNER} GIT_REPO_NAME=${GIT_REPO_NAME}" - - echo "Testing concluded...removing label ${label} for ${machine} from ${GIT_URL}" - echo "https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels /${machine}-${label}" - curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/${machine}-${label} -set -x - git config user.email "ecc.platform@noaa.gov" git config user.name "epic-cicd-jenkins" diff --git a/.cicd/scripts/wm_build.sh b/.cicd/scripts/wm_build.sh index e4a4c0822a..0722b4ba61 100755 --- a/.cicd/scripts/wm_build.sh +++ b/.cicd/scripts/wm_build.sh @@ -63,7 +63,7 @@ module list echo "Pipeline Building WM on ${UFS_PLATFORM} ${UFS_COMPILER} with Account=${ACCNR}." export CMAKE_FLAGS="-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16" /usr/bin/time -p \ - -o ${workspace}/${UFS_PLATFORM}-${UFS_COMPILER}-time-wm_build.json \ + -o ${WORKSPACE:-$(pwd)}/${UFS_PLATFORM}-${UFS_COMPILER}-time-wm_build.json \ -f '{\n "cpu": "%P"\n, "memMax": "%M"\n, "mem": {"text": "%X", "data": "%D", "swaps": "%W", "context": "%c", "waits": "%w"}\n, "pagefaults": {"major": "%F", "minor": "%R"}\n, "filesystem": {"inputs": "%I", "outputs": "%O"}\n, "time": {"real": "%e", "user": "%U", "sys": "%S"}\n}' \ ./build.sh | tee ${workspace}/${UFS_PLATFORM}-${UFS_COMPILER}-wm_build-log.txt status=${PIPESTATUS[0]} diff --git a/.cicd/scripts/wm_init.sh b/.cicd/scripts/wm_init.sh index 2146b9e7ae..bc71523e2c 100755 --- a/.cicd/scripts/wm_init.sh +++ b/.cicd/scripts/wm_init.sh @@ -35,6 +35,6 @@ fi echo "machine_id=<${machine_id}>" /usr/bin/time -p \ - -o ${workspace}/${UFS_PLATFORM}-${UFS_COMPILER}-time-wm_init.json \ + -o ${WORKSPACE:-$(pwd)}/${UFS_PLATFORM}-${UFS_COMPILER}-time-wm_init.json \ -f '{\n "cpu": "%P"\n, "memMax": "%M"\n, "mem": {"text": "%X", "data": "%D", "swaps": "%W", "context": "%c", "waits": "%w"}\n, "pagefaults": {"major": "%F", "minor": "%R"}\n, "filesystem": {"inputs": "%I", "outputs": "%O"}\n, "time": {"real": "%e", "user": "%U", "sys": "%S"}\n}' \ pwd diff --git a/.cicd/scripts/wm_test.sh b/.cicd/scripts/wm_test.sh index 1377696730..d3469ec770 100755 --- a/.cicd/scripts/wm_test.sh +++ b/.cicd/scripts/wm_test.sh @@ -102,7 +102,7 @@ if [[ ${WM_REGRESSION_TESTS} = true ]] ; then ls -al .cicd/* echo "Pipeline Creating Baseline Tests ${WM_OPERATIONAL_TESTS:=default} on ${UFS_PLATFORM} ${UFS_COMPILER}" /usr/bin/time -p \ - -o ${workspace}/${UFS_PLATFORM}-${UFS_COMPILER}-time-wm_test.json \ + -o ${WORKSPACE:-$(pwd)}/${UFS_PLATFORM}-${UFS_COMPILER}-time-wm_test.json \ -f '{\n "cpu": "%P"\n, "memMax": "%M"\n, "mem": {"text": "%X", "data": "%D", "swaps": "%W", "context": "%c", "waits": "%w"}\n, "pagefaults": {"major": "%F", "minor": "%R"}\n, "filesystem": {"inputs": "%I", "outputs": "%O"}\n, "time": {"real": "%e", "user": "%U", "sys": "%S"}\n}' \ ./.cicd/scripts/create_baseline.sh | tee -a ${workspace}/${UFS_PLATFORM}-${UFS_COMPILER}-wm_test-log.txt status=${PIPESTATUS[0]} @@ -113,7 +113,7 @@ if [[ ${WM_REGRESSION_TESTS} = true ]] ; then ls -al .cicd/* echo "Pipeline Running Regression Tests ${WM_OPERATIONAL_TESTS:=default} on ${UFS_PLATFORM} ${UFS_COMPILER}" /usr/bin/time -p \ - -o ${workspace}/${UFS_PLATFORM}-${UFS_COMPILER}-time-wm_test.json \ + -o ${WORKSPACE:-$(pwd)}/${UFS_PLATFORM}-${UFS_COMPILER}-time-wm_test.json \ -f '{\n "cpu": "%P"\n, "memMax": "%M"\n, "mem": {"text": "%X", "data": "%D", "swaps": "%W", "context": "%c", "waits": "%w"}\n, "pagefaults": {"major": "%F", "minor": "%R"}\n, "filesystem": {"inputs": "%I", "outputs": "%O"}\n, "time": {"real": "%e", "user": "%U", "sys": "%S"}\n}' \ ./.cicd/scripts/regression_test.sh | tee -a ${workspace}/${UFS_PLATFORM}-${UFS_COMPILER}-wm_test-log.txt status=${PIPESTATUS[0]} diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 1c2f4ee990..7746fc8854 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -145,7 +145,6 @@ Please delete what is not needed. - [ ] Hera - [ ] Orion - [ ] Hercules - - [ ] Jet - [ ] GaeaC5 - [ ] GaeaC6 - [ ] Derecho diff --git a/.gitignore b/.gitignore index d29bb32d85..ef8248e775 100644 --- a/.gitignore +++ b/.gitignore @@ -79,3 +79,6 @@ fail_compile_* fail_test_* tests/run_dir tests/logs/log_* +compile_0_time.log +tests/modules.ufs_model.lua +tests/ufs_common.lua diff --git a/CICE-interface/CICE b/CICE-interface/CICE index ff7fd76118..4411a158cc 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit ff7fd76118d47ccef6cb934b834161c6be5a9909 +Subproject commit 4411a158cc4839157e3087d7fe8e399f9685eb35 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index b5d1cc189f..cdbed6c48c 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit b5d1cc189fced4abcb13fc70ed2febb2aef61757 +Subproject commit cdbed6c48c2626e67ee5c071947d991e6f0fbc2e diff --git a/CMakeLists.txt b/CMakeLists.txt index 91fa5a855d..fcae4444b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML ATMF LND LND-LM4 S2S S2SA S2SW S2SWA S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML ATMF LND LND-LM4 S2S S2SL S2SA S2SW S2SWA S2SWL S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -157,7 +157,7 @@ if(FMS) find_package(FMS 2022.04 REQUIRED COMPONENTS R4 R8) if(APP MATCHES "^(HAFSW)$") add_library(fms ALIAS FMS::fms_r4) - elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|ATM_DS2S|ATM_DS2S-PCICE|NG-GODAS|HAFS-MOM6|HAFS-MOM6W)$") + elseif (APP MATCHES "^(S2S|S2SA|S2SL|S2SW|S2SWL|S2SWA|S2SWAL|ATM_DS2S|ATM_DS2S-PCICE|NG-GODAS|HAFS-MOM6|HAFS-MOM6W)$") add_library(fms ALIAS FMS::fms_r8) endif() if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|ATMF|ATML-LM4|LND-LM4|HAFS|HAFS-ALL)$") diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index 025043d1ad..1a2d2fcb02 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit 025043d1ad662fca05f29f88ddd88ddf46c81882 +Subproject commit 1a2d2fcb02da38e975f252ef743af24b68b3cc7f diff --git a/WW3 b/WW3 index af14207b0b..8e67627882 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit af14207b0b2395a2b4e1e01cdbce51973026228f +Subproject commit 8e676278822292a97b2b69da336444ec7d04c06b diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index d3ab16b673..23281c588d 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -52,7 +52,7 @@ if(APP MATCHES "^(NG-GODAS)$") message("Configuring UFS app in (CDEPS) Data Atmosphere mode") endif() -if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") +if(APP MATCHES "^(S2S|S2SL|S2SA|S2SW|S2SWL|S2SWA|S2SWAL)$") set(APP_MSG "Configuring UFS app in S2S") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(FMS ON CACHE BOOL "Enable FMS" FORCE) @@ -61,7 +61,7 @@ if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) - if(APP MATCHES "^(S2SW|S2SWA|S2SWAL)") + if(APP MATCHES "^(S2SW|S2SWL|S2SWA|S2SWAL)") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) string(CONCAT APP_MSG ${APP_MSG} " with Waves") endif() @@ -69,7 +69,7 @@ if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) string(CONCAT APP_MSG ${APP_MSG} " with Aerosols") endif() - if(APP MATCHES "^S2SWAL") + if(APP MATCHES "^(S2SL|S2SWL|S2SWAL)") set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) endif() message("${APP_MSG} mode") diff --git a/modulefiles/ufs_expanse.intel b/modulefiles/ufs_expanse.intel deleted file mode 100644 index c3a6e52ce6..0000000000 --- a/modulefiles/ufs_expanse.intel +++ /dev/null @@ -1,32 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Expanse/Intel" -} - -module-whatis "loads UFS Model prerequisites for Expanse/Intel" - -module load slurm/expanse/20.02.3 -module load cpu/0.15.4 -module load intel/19.1.1.217 -module load intel-mpi/2019.8.254 -module load python/3.8.5 -module load cmake/3.18.2 - -module use module use /expanse/lustre/scratch/domh/temp_project/hpc-stack-20210929/modulefiles/stack - -module load hpc/1.2.0 - -module load hpc-intel/19.1.1.217 -module load hpc-intel-mpi/2019.8.254 - -module load jasper/2.0.25 -module load zlib/1.2.11 -module load png/1.6.35 - -module load ufs_common - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform expanse.intel diff --git a/modulefiles/ufs_odin b/modulefiles/ufs_odin deleted file mode 100644 index bca7e0680a..0000000000 --- a/modulefiles/ufs_odin +++ /dev/null @@ -1,20 +0,0 @@ -#%Module###################################################################### -## -## nems prerequisites -## - -proc ModulesHelp {} { - puts stderr "The prerequisites for compiling or running FV3 on Odin. " -} - -#module load newdefaults intel/2016.2.181 mvapich2/1.8 szip hdf5 netcdf4/4.2.1.1 - -module use /scratch/ywang/external/modulefiles -module load bacio/v2.0.2 -module load sp/v2.0.2 -module load ip/v3.0.0 -module load w3nco/v2.0.6 -module load w3emc/v2.3.0 -module load nemsio/v2.2.2 - -module load esmf/7.1.0r diff --git a/modulefiles/ufs_stampede.intel b/modulefiles/ufs_stampede.intel deleted file mode 100644 index 968cc9dd9f..0000000000 --- a/modulefiles/ufs_stampede.intel +++ /dev/null @@ -1,55 +0,0 @@ -#%Module###################################################################### -## -## NEMS FV3 Prerequisites: Stampede/Intel - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running FV3 on Stampede/Intel" -} - -module-whatis "loads NEMS FV3 prerequisites for Stampede/Intel" - -# NOTE: the "module purge" and loading of the module command are -# handled by the module-setup.sh (or .csh) script. - -## -## NCEP libraries -## -module use /work2/08048/hanglei/stampede2/NCEP/install/hpc-stack/modulefiles/stack -module load hpc/1.1.0 -module load hpc-intel/18.0.2 -module load hpc-impi/18.0.2 -module load python3/3.7.0 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.3 -module load g2tmpl/1.10.2 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.8 - -module load gfsio/1.4.1 -module load sfcio/1.4.1 -module load sigio/2.3.2 - -module load jasper/2.0.25 -module load png/1.6.35 -module load zlib/1.2.11 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.3 -module load fms/2020.04.03 -module load esmf/8_1_1 - -## -## load cmake -## -module load cmake/3.20.1 -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform stampede.intel diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 924c815cf5..30e0e4dfe7 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20250107 +export BL_DATE=20250205 diff --git a/tests/compile.sh b/tests/compile.sh index 2c00304e28..5c08e73567 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -94,6 +94,10 @@ else fi fi +if [[ ${MACHINE_ID} == wcoss2 ]] || [[ ${MACHINE_ID} == acorn ]]; then + CMAKE_FLAGS+=" -DENABLE_PARALLELRESTART=ON" +fi + # Check if suites argument is provided or not set +ex SUITES=$(grep -Po "\-DCCPP_SUITES=\K[^ ]*" <<< "${MAKE_OPT}") diff --git a/tests/default_vars.sh b/tests/default_vars.sh index fded44ea40..b16efa108c 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -363,20 +363,6 @@ elif [[ ${MACHINE_ID} = derecho ]]; then export WPG_cpl_atmw_gdas=24 export WAV_tasks_atmw_gdas=248 -elif [[ ${MACHINE_ID} = stampede ]]; then - - echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" - exit 1 - - # TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8 - # TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4 - # TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 - # TPN_c768=20 ; INPES_c768=8 ; JNPES_c768=16 - # TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - - # TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - # THRD_cpl_atmw_gdas=4; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" - elif [[ ${MACHINE_ID} = noaacloud ]] ; then if [[ ${PW_CSP} == aws ]]; then @@ -415,18 +401,6 @@ elif [[ ${MACHINE_ID} = noaacloud ]] ; then export ICE_tasks_cpl_thrd=10 export WAV_tasks_cpl_thrd=12 -elif [[ ${MACHINE_ID} = expanse ]]; then - - echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" - exit 1 - - # TPN_dflt=64 ; INPES_dflt=3 ; JNPES_dflt=8 - # TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4 - # TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - - # TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - # THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" - else echo "Unknown MACHINE_ID ${MACHINE_ID}" @@ -566,6 +540,7 @@ export OUTPUT_HISTORY=.true. export HISTORY_FILE_ON_NATIVE_GRID=.false. export WRITE_DOPOST=.false. export NUM_FILES=2 +export FV3ATM_OUTPUT_DIR="./" export FILENAME_BASE="'atm' 'sfc'" export OUTPUT_GRID="'cubed_sphere_grid'" export OUTPUT_FILE="'netcdf'" @@ -1061,6 +1036,18 @@ export FNSNOC="'global_snoclim.1.875.grb'" export FNZORC="'igbp'" export FNAISC="'IMS-NIC.blended.ice.monthly.clim.grb'" export LDEBUG=.false. + +# Land IAU defaults +export DO_LAND_IAU=.false. +export LAND_IAU_FHRS=3,6,9 +export LAND_IAU_DELHRS=6 +export LAND_IAU_INC_FILES="'sfc_inc',''" +export LSOIL_INCR=3 +export LAND_IAU_FILTER_INC=.false. +export LAND_IAU_UPD_STC=.true. +export LAND_IAU_UPD_SLC=.true. +export LAND_IAU_DP_STCSMC_ADJ=.true. +export LAND_IAU_MIN_T_INC=0.0001 } # Add section for tiled grid namelist diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 99419f3555..5895e09f7e 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -48,13 +48,9 @@ case $(hostname -f) in derecho7.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho7 derecho8.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho8 - login[1-4].stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1-4 - login[1-4].frontera.tacc.utexas.edu) MACHINE_ID=frontera ;; ### frontera1-4 c*.frontera.tacc.utexas.edu) MACHINE_ID=frontera ;; ### frontera compute - login0[1-2].expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse1-2 - discover3[1-5].prv.cube) MACHINE_ID=discover ;; ### discover31-35 *) MACHINE_ID=UNKNOWN ;; # Unknown platform esac diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index d8be6334f6..a57a51c324 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -93,11 +93,7 @@ else fi if [ $TILEDFIX = .true. ]; then - if [ $CPLLND == .true. ]; then - cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc INPUT/. - else - cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . - fi + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . diff --git a/tests/fv3_conf/fv3_slurm.IN_expanse b/tests/fv3_conf/fv3_slurm.IN_expanse deleted file mode 100644 index 6c4819806a..0000000000 --- a/tests/fv3_conf/fv3_slurm.IN_expanse +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash -#SBATCH --job-name="@[JBNME]" -#SBATCH -o out -#SBATCH -e err -#SBATCH -A @[ACCNR] -#SBATCH -p @[QUEUE] -#SBATCH --nodes=@[NODES] -#SBATCH --ntasks-per-node=@[TPN] -#SBATCH -t @[WLCLK] - -set -eux -echo -n " $( date +%s )," > job_timestamp.txt - -set +x -MACHINE_ID=expanse -source ./module-setup.sh -module use $PWD/modulefiles -module load modules.fv3 -module list -set -x - -ulimit -s unlimited - -echo "Model started: "`date` - -export OMP_STACK_SIZE=512M -export OMP_NUM_THREADS=@[THRD] -export I_MPI_PMI_LIBRARY=/cm/shared/apps/slurm/current/lib64/libpmi.so - -# 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 -n @[TASKS] ./fv3.exe - -echo "Model ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_hercules b/tests/fv3_conf/fv3_slurm.IN_hercules index c474cea31a..758a4cd6c7 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hercules +++ b/tests/fv3_conf/fv3_slurm.IN_hercules @@ -44,6 +44,7 @@ elif [[ @[RT_COMPILER] == gnu ]]; then export MV2_HOMOGENEOUS_CLUSTER=1 export MV2_USE_ALIGNED_ALLOC=1 fi +export FI_MLX_INJECT_LIMIT=0 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index 6221286a5f..5f67dd2550 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -35,6 +35,7 @@ export OMP_NUM_THREADS=@[THRD] #export PSM_SHAREDCONTEXTS=1 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +export FI_MLX_INJECT_LIMIT=0 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 diff --git a/tests/fv3_conf/fv3_slurm.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede deleted file mode 100644 index d80a3e068c..0000000000 --- a/tests/fv3_conf/fv3_slurm.IN_stampede +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/bash -l -#SBATCH -o out -#SBATCH -e err -#SBATCH -N @[NODES] -#SBATCH --ntasks-per-node=@[TPN] -#SBATCH -A @[ACCNR] -#SBATCH -p @[QUEUE] -#SBATCH -t 00:@[WLCLK]:00 - -set -eux -echo -n " $( date +%s )," > job_timestamp.txt - -set +x -MACHINE_ID=stampede -source ./module-setup.sh -module use $PWD/modulefiles -module load modules.fv3 -module list -set -x - -echo "Model started: " `date` - -export MPI_TYPE_DEPTH=20 -export OMP_STACKSIZE=512M -export OMP_NUM_THREADS=@[THRD] -export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 -export LD_BIND_NOW=1 - -# 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 - -#mpirun -prepend-rank -np $SBATCH_NP ./fv3.exe -ibrun -n @[TASKS] ./fv3.exe - -echo "Model ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/noahmp_run.IN b/tests/fv3_conf/noahmp_run.IN index 6f4f8bd0da..a392dfb8df 100644 --- a/tests/fv3_conf/noahmp_run.IN +++ b/tests/fv3_conf/noahmp_run.IN @@ -1,64 +1,161 @@ mkdir -p INPUT RESTART -if [ "$LNDRES" = "C96" ]; then +if [ "$ATMRES" = "C96" ]; then inputdir=FV3_input_data -elif [ "$LNDRES" = "C48" ]; then - inputdir=FV3_input_data48 -elif [ "$LNDRES" = "C192" ]; then - inputdir=FV3_input_data192 -elif [ "$LNDRES" = "C384" ]; then - inputdir=FV3_input_data384 -elif [ "$LNDRES" = "C768" ]; then - inputdir=FV3_input_data768 +else + inputdir=FV3_input_data${ATMRES#C} fi -echo "inputdir=$inputdir,LNDRES=$LNDRES" +echo "inputdir=$inputdir,ATMRES=$ATMRES" + +V2_SFC_FILE=${V2_SFC_FILE:-false} +SUFFIX=${RT_SUFFIX} -if [ $DATM_CDEPS == true ]; then +if [[ $DATM_CDEPS == true ]] || [[ $S2S = false ]]; then targetdir="./INPUT" - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile1.nc ./${targetdir}/@[LNDRES].initial.tile1.nc - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile2.nc ./${targetdir}/@[LNDRES].initial.tile2.nc - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile3.nc ./${targetdir}/@[LNDRES].initial.tile3.nc - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile4.nc ./${targetdir}/@[LNDRES].initial.tile4.nc - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile5.nc ./${targetdir}/@[LNDRES].initial.tile5.nc - rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile6.nc ./${targetdir}/@[LNDRES].initial.tile6.nc -else - if [ "$ATMRES" = "$LNDRES" ]; then - targetdir="./INPUT" - cd ${targetdir} - ln -sf grid_spec.nc @[LNDRES]_mosaic.nc - cd - - else - mkdir -p INPUT/$LNDRES - targetdir="./INPUT/$LNDRES" - fi - if [ $WARM_START = .false. ]; then - cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/sfc_data.tile*.nc ${targetdir}/. + if [ $DATM_CDEPS == true ]; then + # Initial condition + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile1.nc ./${targetdir}/@[LNDRES].initial.tile1.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile2.nc ./${targetdir}/@[LNDRES].initial.tile2.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile3.nc ./${targetdir}/@[LNDRES].initial.tile3.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile4.nc ./${targetdir}/@[LNDRES].initial.tile4.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile5.nc ./${targetdir}/@[LNDRES].initial.tile5.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile6.nc ./${targetdir}/@[LNDRES].initial.tile6.nc + + # Fixed files + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile1.nc ${targetdir}/oro_data.tile1.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile2.nc ${targetdir}/oro_data.tile2.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile3.nc ${targetdir}/oro_data.tile3.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile4.nc ${targetdir}/oro_data.tile4.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile5.nc ${targetdir}/oro_data.tile5.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx@[OCNRES].tile6.nc ${targetdir}/oro_data.tile6.nc + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/oro_data_ls* ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/oro_data_ss* ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES]*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/CPL_FIX/a@[LNDRES]o@[OCNRES]/grid_spec.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/@[LNDRES]_grid*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/grid_spec.nc ${targetdir}/@[LNDRES]_mosaic.nc else - # land restart file - cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. - # CMEPS restart and pointer files - RFILE=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . - ls -1 ${RFILE}>rpointer.cpl - # link grid spec file + # Initial condition + if [ $WARM_START = .false. ]; then + # IC + if [ "$V2_SFC_FILE" = "true" ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}_v2_sfc/sfc_data*.nc ${targetdir}/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}_v2_sfc/gfs_data*.nc ${targetdir}/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}_v2_sfc/gfs_ctrl.nc ${targetdir}/. + else + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}/sfc_data*.nc ${targetdir}/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}/gfs_data*.nc ${targetdir}/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}/gfs_ctrl*.nc ${targetdir}/. + fi + else + # FV3 related restart files + cp -r ../${DEP_RUN}${SUFFIX}/${targetdir}/* ${targetdir}/. + cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ${targetdir}/. + for RFILE in INPUT/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + mv -f $RFILE ${targetdir}/"${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + done + if [[ $IAU_OFFSET == 6 ]] && [[ $FHROT -le 6 ]]; then + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_mx${OCNRES}/fv_increment*.nc INPUT/. + fi + fi + + # Fixed files + FNSMCC="global_soilmgldas.statsgo.t1534.3072.1536.grb" + FNMSKH="global_slmask.t1534.3072.1536.grb" + cp @[INPUTDATA_ROOT]/${inputdir}/${FNSMCC} . + cp @[INPUTDATA_ROOT]/${inputdir}/${FNMSKH} . + if [ $TILEDFIX = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_snoclim.1.875.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/IMS-NIC.blended.ice.monthly.clim.grb . + fi + + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile1.nc ${targetdir}/oro_data.tile1.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile2.nc ${targetdir}/oro_data.tile2.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile3.nc ${targetdir}/oro_data.tile3.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile4.nc ${targetdir}/oro_data.tile4.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile5.nc ${targetdir}/oro_data.tile5.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/oro_@[ATMRES].mx@[OCNRES].tile6.nc ${targetdir}/oro_data.tile6.nc + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/oro_data_ls* ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/oro_data_ss* ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + cp @[INPUTDATA_ROOT]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/@[ATMRES]_grid*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/grid_spec.nc ${targetdir}/@[ATMRES]_mosaic.nc + cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/ocean_mosaic.nc ${targetdir}/. + + # Merra2 + if [ $IAER = 1011 ]; then + for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc + done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat + fi + + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc + + if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN CCN_ACTIVATE.BIN + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat freezeH2O.dat + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat qr_acr_qgV2.dat + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat qr_acr_qsV2.dat + fi + + # Prognostic aerosols + if [ $CPLCHM = .true. ]; then + ln -sf @[INPUTDATA_ROOT]/GOCART/p8c_5d/ExtData . + fi fi fi +# Land component related restart files +if [ $WARM_START = .true. ]; then + # Copy land restart files + cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. + # CMEPS restart and pointer files + RFILE=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl +fi + +# Running land in different resolution +# Note that CMEPS mediator has some limitiations to run land in different resolution than atmosphere if [ "$ATMRES" != "$LNDRES" ]; then - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].maximum_snow_albedo.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].slope_type.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].soil_type.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].soil_color.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].substrate_temperature.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].vegetation_greenness.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].vegetation_type.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile1.nc ${targetdir}/oro_data.tile1.nc - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile2.nc ${targetdir}/oro_data.tile2.nc - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile3.nc ${targetdir}/oro_data.tile3.nc - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile4.nc ${targetdir}/oro_data.tile4.nc - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile5.nc ${targetdir}/oro_data.tile5.nc - rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile6.nc ${targetdir}/oro_data.tile6.nc - rsync -arv @[INPUTDATA_ROOT]/${inputdir}/INPUT/@[LNDRES]_grid.tile*.nc ${targetdir}/. - rsync -arv @[INPUTDATA_ROOT]/${inputdir}/INPUT/grid_spec.nc ${targetdir}/@[LNDRES]_mosaic.nc + mkdir -p INPUT/$LNDRES + targetdir="./INPUT/$LNDRES" + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].maximum_snow_albedo.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].slope_type.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].soil_type.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].soil_color.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].substrate_temperature.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].vegetation_greenness.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].vegetation_type.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile1.nc ${targetdir}/oro_data.tile1.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile2.nc ${targetdir}/oro_data.tile2.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile3.nc ${targetdir}/oro_data.tile3.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile4.nc ${targetdir}/oro_data.tile4.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile5.nc ${targetdir}/oro_data.tile5.nc + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx025.tile6.nc ${targetdir}/oro_data.tile6.nc + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT/@[LNDRES]_grid.tile*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT/grid_spec.nc ${targetdir}/@[LNDRES]_mosaic.nc + if [ $WARM_START = .false. ]; then + if [ "$V2_SFC_FILE" = "true" ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025_v2_sfc/sfc_data*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025_v2_sfc/gfs_data*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025_v2_sfc/gfs_ctrl*.nc ${targetdir}/. + else + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025/sfc_data*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025/gfs_data*.nc ${targetdir}/. + cp @[INPUTDATA_ROOT]/FV3_input_data${LNDRES#C}/INPUT_L127_mx025/gfs_ctrl*.nc ${targetdir}/. + fi + fi fi diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 6183b88b77..3d72083235 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Tue Jan 21 05:49:59 UTC 2025 +Fri Feb 7 08:33:02 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3292469/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.320072 - 0: The maximum resident set size (KB) = 1448288 + 0: The total amount of wall time = 264.084045 + 0: The maximum resident set size (KB) = 1450908 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3292469/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 876.657665 - 0: The maximum resident set size (KB) = 1437152 + 0: The total amount of wall time = 899.139778 + 0: The maximum resident set size (KB) = 1421752 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3292469/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 252.676844 - 0: The maximum resident set size (KB) = 1421128 + 0: The total amount of wall time = 235.823468 + 0: The maximum resident set size (KB) = 1418764 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3292469/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 236.323493 - 0: The maximum resident set size (KB) = 1429624 + 0: The total amount of wall time = 239.809259 + 0: The maximum resident set size (KB) = 1435472 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3292469/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 235.014572 - 0: The maximum resident set size (KB) = 1420424 + 0: The total amount of wall time = 234.940708 + 0: The maximum resident set size (KB) = 1427348 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3292469/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.140386 - 0: The maximum resident set size (KB) = 1433648 + 0: The total amount of wall time = 239.939740 + 0: The maximum resident set size (KB) = 1430068 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_477183/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3292469/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 234.759589 - 0: The maximum resident set size (KB) = 1433016 + 0: The total amount of wall time = 238.946975 + 0: The maximum resident set size (KB) = 1427488 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Jan 21 06:58:31 UTC 2025 -Elapsed time: 01h:08m:33s. Have a nice day! +Fri Feb 7 09:44:10 UTC 2025 +Elapsed time: 01h:11m:08s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 3c6511e905..a2c1b08e99 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Tue Jan 21 04:11:58 UTC 2025 +Fri Feb 7 07:00:35 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_120730/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2890405/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 2676.469340 - 0: The maximum resident set size (KB) = 1518024 + 0: The total amount of wall time = 2363.235050 + 0: The maximum resident set size (KB) = 1485936 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_120730/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2890405/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +135,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 813.896517 - 0: The maximum resident set size (KB) = 1508392 + 0: The total amount of wall time = 699.210335 + 0: The maximum resident set size (KB) = 1492740 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_120730/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2890405/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 678.460183 - 0: The maximum resident set size (KB) = 1505616 + 0: The total amount of wall time = 666.319467 + 0: The maximum resident set size (KB) = 1501716 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Jan 21 05:49:58 UTC 2025 -Elapsed time: 01h:38m:00s. Have a nice day! +Fri Feb 7 08:33:02 UTC 2025 +Elapsed time: 01h:32m:28s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index c81ebe009c..a1a6667247 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Tue Jan 21 01:39:24 UTC 2025 +Fri Feb 7 04:20:23 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3701143/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2027922/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving dynf000.nc .........OK @@ -15,14 +15,14 @@ Moving baseline bit_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1419.663361 - 0: The maximum resident set size (KB) = 767536 + 0: The total amount of wall time = 1439.457005 + 0: The maximum resident set size (KB) = 754652 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3701143/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2027922/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -33,14 +33,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2222.506149 - 0: The maximum resident set size (KB) = 737008 + 0: The total amount of wall time = 2304.819614 + 0: The maximum resident set size (KB) = 719344 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3701143/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2027922/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -52,14 +52,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2194.200962 - 0: The maximum resident set size (KB) = 712244 + 0: The total amount of wall time = 2351.977478 + 0: The maximum resident set size (KB) = 732376 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3701143/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2027922/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -70,11 +70,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2208.564561 - 0: The maximum resident set size (KB) = 723148 + 0: The total amount of wall time = 2214.726258 + 0: The maximum resident set size (KB) = 715628 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Jan 21 04:11:58 UTC 2025 -Elapsed time: 02h:32m:34s. Have a nice day! +Fri Feb 7 07:00:34 UTC 2025 +Elapsed time: 02h:40m:11s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index f5e220ae04..47e380eded 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,20 +1,20 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -558f4722abc1d8aa24dbd5499ac3826dd9206095 +74c4de23fd3ae2e48b365192b4fdc0097563da19 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - 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) + 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) + 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 951a5967c998c3694f142d3a47d746c583f30012 FV3 (remotes/origin/rrfsv1-to-ufs/dev6) + da13577f5356ba7939c52f37bb67980421e5d4eb FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev6) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + 5f2085787cfa4148bb6a3a229537e37fd9c31319 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5576-g5f208578) 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) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 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) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + 8e676278822292a97b2b69da336444ec7d04c06b WW3 (6.07.1-353-g8e676278) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,270 +38,273 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1274677 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250205 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2952848 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:42] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:20, 07:05](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:12] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:18, 15:37](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:39, 16:35](1941 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:18, 07:39](1075 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:02, 18:22](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 12:07] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:17, 15:24](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:37] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:27, 25:49](1942 MB) - -PASS -- COMPILE 's2swa_intel' [14:28, 12:20] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:14, 08:44](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:30, 08:40](3227 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:05, 05:11](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:00, 08:36](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:21, 05:14](3169 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [25:43, 16:56](3450 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:09, 08:34](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [28:36, 07:22](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:30, 08:49](3228 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:10, 08:34](3203 MB) - -PASS -- COMPILE 's2sw_intel' [12:26, 11:08] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:33, 05:02](1916 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:00, 07:21](1984 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:20] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:00, 05:09](1969 MB) - -PASS -- COMPILE 's2s_intel' [11:26, 10:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:31, 06:08](2882 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:29, 02:13](2889 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:12, 01:28](2309 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:47] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [17:15, 08:39](3229 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:52, 15:33](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:03, 07:44](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:04, 18:11](1900 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:36] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:40, 06:54](3196 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:36, 15:35](1908 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:40, 16:45](1949 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:29, 07:40](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:40, 18:11](1890 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 12:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:34, 15:26](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:32] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:46, 25:48](1948 MB) + +PASS -- COMPILE 's2swa_intel' [13:27, 11:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:01, 08:44](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:37, 08:45](3227 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:58, 05:07](3111 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:07, 08:40](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [19:04, 05:21](3130 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [24:41, 16:53](3449 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:08, 08:26](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [29:45, 07:07](3174 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:22, 08:41](3229 MB) + +PASS -- COMPILE 's2swal_intel' [13:29, 12:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [32:44, 08:58](3230 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [13:27, 05:25](3117 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [17:19, 08:20](3208 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 10:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:35, 05:09](1918 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:01, 07:25](1993 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:28] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:59, 05:03](1988 MB) + +PASS -- COMPILE 's2s_intel' [12:27, 10:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:36, 05:58](2880 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:30, 02:04](2896 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:11, 01:21](2316 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:45] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:14, 08:33](3229 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:26, 11:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:49, 15:43](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:56, 07:40](1118 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:56, 18:19](1907 MB) PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:13] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:22, 27:14](1968 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [17:45, 04:00](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:08, 02:39](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:06, 02:41](1568 MB) -PASS -- TEST 'control_latlon_intel' [12:59, 02:33](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:14, 02:38](1562 MB) -PASS -- TEST 'control_c48_intel' [15:20, 06:26](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:00, 05:58](704 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:16, 06:36](1580 MB) -PASS -- TEST 'control_c192_intel' [13:15, 07:18](1688 MB) -PASS -- TEST 'control_c384_intel' [06:21, 08:48](1965 MB) -PASS -- TEST 'control_c384gdas_intel' [11:24, 09:16](1164 MB) -PASS -- TEST 'control_stochy_intel' [06:35, 01:57](614 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:36, 01:07](420 MB) -PASS -- TEST 'control_lndp_intel' [07:33, 01:49](618 MB) -PASS -- TEST 'control_iovr4_intel' [08:37, 02:38](611 MB) -PASS -- TEST 'control_iovr5_intel' [08:37, 02:36](611 MB) -PASS -- TEST 'control_p8_intel' [10:30, 02:59](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:29, 03:08](1848 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:25, 02:58](1847 MB) -PASS -- TEST 'control_restart_p8_intel' [06:43, 01:56](1006 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:42, 03:08](1840 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:42, 01:52](1010 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:37, 03:13](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [14:29, 05:55](1933 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:02, 05:02](1858 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:29, 04:09](1904 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:19, 03:20](1865 MB) -PASS -- TEST 'merra2_thompson_intel' [12:59, 03:34](1852 MB) -PASS -- TEST 'regional_control_intel' [08:54, 05:20](887 MB) -PASS -- TEST 'regional_restart_intel' [05:59, 03:05](877 MB) -PASS -- TEST 'regional_decomp_intel' [08:48, 05:31](889 MB) -PASS -- TEST 'regional_2threads_intel' [11:51, 07:38](1013 MB) -PASS -- TEST 'regional_noquilt_intel' [07:50, 05:10](1216 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:50, 05:15](889 MB) -PASS -- TEST 'regional_wofs_intel' [10:58, 07:00](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [10:25, 08:45] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [18:40, 07:22](999 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [24:37, 04:31](1160 MB) -PASS -- TEST 'rap_decomp_intel' [18:40, 07:40](1003 MB) -PASS -- TEST 'rap_2threads_intel' [26:45, 15:54](1076 MB) -PASS -- TEST 'rap_restart_intel' [08:29, 03:54](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [18:43, 07:14](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:43, 07:30](997 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:28, 05:26](886 MB) -PASS -- TEST 'hrrr_control_intel' [19:41, 04:01](995 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:36, 03:58](993 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [19:47, 07:58](1066 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:41, 02:15](830 MB) -PASS -- TEST 'rrfs_v1beta_intel' [17:43, 07:13](994 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:41, 09:28](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:39, 09:11](1944 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:06] -PASS -- TEST 'control_csawmg_intel' [15:01, 07:06](952 MB) -PASS -- TEST 'control_ras_intel' [10:38, 03:34](653 MB) - -PASS -- COMPILE 'wam_intel' [10:25, 08:17] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:12, 12:08](1640 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:30] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:22, 03:07](1848 MB) -PASS -- TEST 'regional_control_faster_intel' [07:57, 05:04](883 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:39] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:01, 02:56](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:08, 02:48](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:33, 03:32](803 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:34, 03:15](804 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:52, 05:03](1111 MB) -PASS -- TEST 'control_ras_debug_intel' [06:32, 03:18](815 MB) -PASS -- TEST 'control_diag_debug_intel' [06:57, 03:12](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [06:53, 03:20](1893 MB) -PASS -- TEST 'regional_debug_intel' [21:11, 18:46](922 MB) -PASS -- TEST 'rap_control_debug_intel' [08:35, 05:40](1186 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:38, 05:42](1180 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:35, 05:46](1187 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:35, 05:42](1185 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:35, 05:40](1187 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:45, 05:56](1274 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:35, 05:52](1198 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:32, 05:52](1190 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:36, 05:49](1188 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:34, 05:49](1187 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:35, 05:39](1184 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:36, 05:50](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:38, 09:09](1184 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:35, 05:34](1180 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:35, 05:48](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:35, 05:43](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:45, 09:38](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:19, 04:25] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [21:13, 14:15](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:22, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:21, 04:16](1032 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:19, 06:12](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:17, 03:28](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [21:35, 13:54](926 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:25, 07:09](924 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:58, 03:29](869 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:30, 04:49](789 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 02:04](758 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 08:05] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:15, 02:20](1081 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:11, 02:06](1062 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:58, 01:36](958 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:57, 04:14](902 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:31] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:34, 05:28](1060 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:41, 05:24](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [20:18, 15:00](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:16, 15:01](826 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [29:22, 23:12](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:14, 14:58](1223 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:23] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:36, 05:39](1089 MB) - -PASS -- COMPILE 'hafsw_intel' [11:24, 10:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [25:58, 06:39](688 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [26:02, 06:09](1044 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:02, 07:54](734 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:58, 13:12](897 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:05, 14:27](784 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:13, 05:54](481 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:52, 07:27](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [16:35, 03:25](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [43:16, 08:45](448 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:10, 04:10](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:14, 04:01](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:37, 05:10](562 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:46, 01:54](407 MB) -PASS -- TEST 'gnv1_nested_intel' [11:35, 05:31](1701 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:21, 04:52] ( 1446 warnings 1444 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [37:43, 14:50](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:35] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [31:41, 08:25](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [39:56, 08:26](786 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:27, 09:50] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [31:01, 06:43](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:29, 09:14] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [16:49, 07:35](726 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:52, 07:43](705 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:33, 16:08](897 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [20:33, 09:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 02:52](767 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:26, 01:50](742 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 02:39](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 02:36](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:40](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:23, 02:44](766 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 02:46](753 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:23, 02:33](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:36, 06:12](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:30, 06:11](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:48](766 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:48](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:27, 04:47](2031 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [23:38, 09:28] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 02:48](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:26, 00:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:39, 01:22](301 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:34, 01:19](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:36, 01:05](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:34, 09:52] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:36, 04:12](1915 MB) - -PASS -- COMPILE 'atml_intel' [20:36, 09:31] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:40, 05:18](1879 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:29, 05:18](1878 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [11:09, 03:05](1017 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:28, 05:20] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:30, 06:53](1922 MB) - -PASS -- COMPILE 'atmw_intel' [15:29, 09:02] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:19, 02:18](1881 MB) - -PASS -- COMPILE 'atmaero_intel' [13:27, 08:37] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:05, 04:35](3117 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:05, 05:15](2995 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:47, 05:16](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:22, 04:25] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:59, 22:52](4487 MB) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:28, 26:46](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 09:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [16:45, 03:52](684 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [15:05, 02:38](1575 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:05, 02:44](1587 MB) +PASS -- TEST 'control_latlon_intel' [11:55, 02:42](1582 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:12, 02:33](1582 MB) +PASS -- TEST 'control_c48_intel' [13:19, 06:31](1598 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:59, 06:00](720 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [14:21, 06:31](1588 MB) +PASS -- TEST 'control_c192_intel' [14:16, 07:06](1710 MB) +PASS -- TEST 'control_c384_intel' [02:15, 08:39](2012 MB) +PASS -- TEST 'control_c384gdas_intel' [10:18, 09:10](1170 MB) +PASS -- TEST 'control_stochy_intel' [06:34, 01:46](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:33, 01:08](405 MB) +PASS -- TEST 'control_lndp_intel' [06:33, 01:43](638 MB) +PASS -- TEST 'control_iovr4_intel' [07:35, 02:31](636 MB) +PASS -- TEST 'control_iovr5_intel' [08:36, 02:42](636 MB) +PASS -- TEST 'control_p8_intel' [10:31, 03:02](1858 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:29, 03:06](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:27, 02:57](1864 MB) +PASS -- TEST 'control_restart_p8_intel' [06:27, 01:55](1010 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:38, 02:56](1857 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:44, 01:46](1018 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:36, 03:04](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:41, 05:53](1940 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:59, 04:56](1861 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:31, 04:07](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:16, 03:07](1872 MB) +PASS -- TEST 'merra2_thompson_intel' [10:00, 03:30](1863 MB) +PASS -- TEST 'regional_control_intel' [08:58, 05:09](914 MB) +PASS -- TEST 'regional_restart_intel' [08:50, 03:02](900 MB) +PASS -- TEST 'regional_decomp_intel' [07:53, 05:26](920 MB) +PASS -- TEST 'regional_2threads_intel' [10:54, 07:33](1031 MB) +PASS -- TEST 'regional_noquilt_intel' [08:53, 05:03](1211 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:48, 05:09](914 MB) +PASS -- TEST 'regional_wofs_intel' [09:49, 06:56](1615 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:51] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [22:41, 07:18](1022 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 04:32](1221 MB) +PASS -- TEST 'rap_decomp_intel' [11:39, 07:29](1021 MB) +PASS -- TEST 'rap_2threads_intel' [21:44, 15:50](1097 MB) +PASS -- TEST 'rap_restart_intel' [08:30, 03:53](784 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:34, 07:10](1016 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:19, 07:31](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [14:37, 05:26](795 MB) +PASS -- TEST 'hrrr_control_intel' [10:40, 03:50](1012 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:34, 03:52](1012 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:37, 07:56](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:36, 02:10](767 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:30, 07:19](1010 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:43, 09:26](1979 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:41, 09:09](1969 MB) + +PASS -- COMPILE 'csawmg_intel' [09:21, 08:05] +PASS -- TEST 'control_csawmg_intel' [17:13, 07:07](960 MB) +PASS -- TEST 'control_ras_intel' [10:40, 03:39](671 MB) + +PASS -- COMPILE 'wam_intel' [10:22, 08:16] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:09, 12:15](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:25] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:27, 03:01](1858 MB) +PASS -- TEST 'regional_control_faster_intel' [07:54, 05:07](911 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:38] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [14:12, 03:04](1621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:23, 02:51](1619 MB) +PASS -- TEST 'control_stochy_debug_intel' [11:41, 03:45](827 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:35, 03:17](827 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:09, 04:57](1118 MB) +PASS -- TEST 'control_ras_debug_intel' [12:43, 03:12](831 MB) +PASS -- TEST 'control_diag_debug_intel' [17:19, 03:14](1673 MB) +PASS -- TEST 'control_debug_p8_intel' [15:09, 03:04](1906 MB) +PASS -- TEST 'regional_debug_intel' [22:15, 18:28](963 MB) +PASS -- TEST 'rap_control_debug_intel' [10:37, 05:35](1207 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:40, 05:30](1201 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:38, 05:43](1205 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:36, 05:35](1205 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:36, 05:32](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [12:47, 05:58](1290 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:37, 05:53](1207 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:40, 05:49](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [11:37, 05:38](1208 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:38, 05:39](1207 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:37, 05:44](1197 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:36, 05:36](1201 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:39, 08:53](1198 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:36, 05:41](1202 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:37, 05:35](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:39, 05:35](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:55, 09:30](1209 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:24] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:11, 14:16](1709 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 08:08] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:19, 04:15](1070 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:29, 06:05](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:27, 03:21](890 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:08, 13:40](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:11, 07:04](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:01, 03:31](887 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:31, 04:30](756 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:32, 02:00](728 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 08:09] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:18, 02:20](1089 MB) +PASS -- TEST 'conus13km_2threads_intel' [13:09, 02:02](1070 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:56, 01:25](780 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:25, 08:14] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:55, 04:15](920 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:21, 04:30] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:35, 05:28](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:39, 05:15](1074 MB) +PASS -- TEST 'conus13km_debug_intel' [18:19, 14:53](1157 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:21, 14:57](864 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [27:27, 23:08](1139 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:16, 15:01](1226 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:26] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:37, 05:28](1108 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 09:51] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [26:04, 06:30](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [31:05, 05:50](1084 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:59, 07:39](762 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:49, 12:52](914 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:05, 14:12](844 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:09, 05:52](486 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:48, 07:12](483 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [17:26, 03:26](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [45:17, 08:39](450 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:08, 04:07](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:09, 03:50](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:37, 05:13](563 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [17:57, 02:10](410 MB) +PASS -- TEST 'gnv1_nested_intel' [11:42, 04:43](1705 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:22, 04:52] ( 1446 warnings 1444 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [38:48, 14:27](620 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:26, 09:34] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [32:48, 08:23](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [31:46, 08:27](796 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:28, 09:53] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:00, 06:34](786 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:28, 09:08] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [14:55, 07:19](762 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:45, 07:20](745 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:33, 16:09](897 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:24, 09:28] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:43](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 01:46](754 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:35](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:31](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:45](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 02:50](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 02:45](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 02:30](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:29, 06:12](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:24, 06:12](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:22, 02:43](766 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:28, 04:35](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:28, 04:35](2032 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:25, 09:18] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:25, 02:44](767 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:15, 00:50] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:41, 01:18](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:33, 01:15](449 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:35, 00:59](448 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:27, 09:57] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:37, 03:56](1924 MB) + +PASS -- COMPILE 'atml_intel' [13:27, 09:47] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [10:33, 04:30](1888 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 02:38](1038 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:25, 05:37] ( 872 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:35, 05:58](1934 MB) + +PASS -- COMPILE 'atmw_intel' [14:27, 08:58] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:17, 02:19](1880 MB) + +PASS -- COMPILE 'atmaero_intel' [15:30, 08:35] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:03, 04:24](3115 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:04, 05:02](3008 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:47, 05:10](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:22, 04:27] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:48, 22:28](4484 MB) SYNOPSIS: -Starting Date/Time: 20250121 12:48:21 -Ending Date/Time: 20250121 14:49:38 -Total Time: 02h:01m:46s -Compiles Completed: 37/37 -Tests Completed: 177/177 +Starting Date/Time: 20250211 18:30:27 +Ending Date/Time: 20250211 20:32:23 +Total Time: 02h:02m:25s +Compiles Completed: 38/38 +Tests Completed: 178/178 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index f058d47b54..82c59fe2a1 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,20 +1,20 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d +892355764fdbb830952d42259e9c98bff756411b 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) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 55576eba972ad53cc6546f00d409fa27361f78bd CMEPS-interface/CMEPS (cmeps_v0.4.1-2312-g55576eb) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) + 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 951a5967c998c3694f142d3a47d746c583f30012 FV3 (remotes/origin/rrfsv1-to-ufs/dev6) + da13577f5356ba7939c52f37bb67980421e5d4eb FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev6) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + 5f2085787cfa4148bb6a3a229537e37fd9c31319 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5576-g5f208578) 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) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 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) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + 8e676278822292a97b2b69da336444ec7d04c06b WW3 (6.07.1-353-g8e676278) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,289 +38,292 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_25395 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20250205 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_94098 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:25, 21:43] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:59, 06:30](3213 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:26, 23:28] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:15, 14:09](1907 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:32, 15:21](1936 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:42, 06:57](1078 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:29, 16:06](1878 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:26, 23:18] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:40, 14:01](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:22, 11:55] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:12, 23:41](1942 MB) - -PASS -- COMPILE 's2swa_intel' [23:25, 21:39] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:30, 08:14](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:05, 08:29](3228 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:29, 05:04](3153 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:39, 08:28](3253 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:28, 05:07](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:52, 13:58](3815 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:48, 08:20](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:44, 06:47](3538 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:16, 08:12](3233 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:33, 09:00](3819 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:54, 06:32](3620 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [38:59, 10:46](4546 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [33:18, 07:28](4680 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:32, 08:09](3208 MB) - -PASS -- COMPILE 's2sw_intel' [21:24, 19:47] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:53, 04:47](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:02, 07:01](1988 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:24, 11:42] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:00, 12:48](3304 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:24, 11:05] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:36, 06:03](1963 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:24, 16:09] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:04, 05:14](1980 MB) - -PASS -- COMPILE 's2s_intel' [18:24, 16:36] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:21, 05:54](2887 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:22, 02:19](2896 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:30, 01:30](2308 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:22, 23:51] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:53, 08:16](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:22, 21:48] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:29, 14:14](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:36, 07:18](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:23, 16:01](1891 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:21, 11:09] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:11, 25:22](1961 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:21, 14:16] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:39, 03:27](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:15, 02:11](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:48, 02:13](1576 MB) -PASS -- TEST 'control_latlon_intel' [08:13, 02:09](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:15, 02:11](1562 MB) -PASS -- TEST 'control_c48_intel' [11:15, 05:44](1590 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:49, 05:19](709 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [11:03, 05:45](1586 MB) -PASS -- TEST 'control_c192_intel' [10:27, 06:10](1695 MB) -PASS -- TEST 'control_c384_intel' [18:22, 06:57](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [19:28, 07:15](1178 MB) -PASS -- TEST 'control_stochy_intel' [03:50, 01:28](622 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:39, 00:53](436 MB) -PASS -- TEST 'control_lndp_intel' [03:35, 01:23](616 MB) -PASS -- TEST 'control_iovr4_intel' [04:52, 02:07](615 MB) -PASS -- TEST 'control_iovr5_intel' [04:51, 02:08](615 MB) -PASS -- TEST 'control_p8_intel' [06:37, 03:14](1858 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 03:08](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:48, 03:17](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [05:32, 02:03](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:36, 03:14](1852 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 02:00](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:32, 03:10](1848 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:38, 04:51](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:32, 04:52](1857 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:48, 04:01](1913 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:55, 03:24](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [07:44, 03:41](1861 MB) -PASS -- TEST 'regional_control_intel' [08:03, 04:58](894 MB) -PASS -- TEST 'regional_restart_intel' [07:07, 03:01](877 MB) -PASS -- TEST 'regional_decomp_intel' [08:05, 05:15](886 MB) -PASS -- TEST 'regional_noquilt_intel' [08:10, 04:54](1217 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:10, 04:57](894 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:03, 04:58](896 MB) -PASS -- TEST 'regional_wofs_intel' [08:57, 05:54](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [15:21, 12:53] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:30, 06:10](1005 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:18, 04:03](1162 MB) -PASS -- TEST 'rap_decomp_intel' [09:29, 06:25](1007 MB) -PASS -- TEST 'rap_2threads_intel' [15:28, 11:30](1085 MB) -PASS -- TEST 'rap_restart_intel' [06:25, 03:15](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:42, 06:09](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:34, 06:25](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:24, 04:39](883 MB) -PASS -- TEST 'hrrr_control_intel' [08:17, 03:15](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:17, 03:19](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:29, 05:47](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:48, 01:49](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:36, 06:02](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:06, 08:07](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:08, 07:50](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [14:19, 11:44] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:16, 06:27](955 MB) -PASS -- TEST 'control_ras_intel' [05:49, 02:53](658 MB) - -PASS -- COMPILE 'wam_intel' [13:20, 11:33] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:23, 10:18](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:20, 12:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:44, 03:14](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [08:14, 04:46](899 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [18:17, 14:40] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:27, 02:17](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:14](1609 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:57, 02:59](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:56, 02:40](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:06, 04:49](1116 MB) -PASS -- TEST 'control_ras_debug_intel' [05:42, 02:40](814 MB) -PASS -- TEST 'control_diag_debug_intel' [07:27, 02:40](1666 MB) -PASS -- TEST 'control_debug_p8_intel' [08:04, 03:13](1901 MB) -PASS -- TEST 'regional_debug_intel' [20:14, 16:20](921 MB) -PASS -- TEST 'rap_control_debug_intel' [08:44, 04:41](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:00, 04:42](1182 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:52, 04:40](1191 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:50, 04:44](1187 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:51, 04:50](1188 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:56, 04:59](1271 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:45, 04:52](1190 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:39, 04:52](1192 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:44, 04:52](1186 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:53, 04:49](1192 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:48, 04:37](1184 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:41, 04:43](1186 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:38, 07:45](1189 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:47, 04:37](1188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:42, 04:52](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:48, 04:45](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:22, 08:00](1197 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:17, 07:09] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:48, 12:14](1694 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:20, 11:31] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:11, 03:39](1031 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:14, 05:09](875 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:19, 02:47](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:10, 09:37](929 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:13, 04:57](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:10, 02:56](874 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:15, 03:54](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:39, 01:34](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:18, 11:22] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:45, 01:54](1076 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:23, 01:22](1078 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:28, 01:09](963 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:18, 11:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:09, 03:40](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 07:34] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:47, 04:31](1064 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:47, 04:35](1061 MB) -PASS -- TEST 'conus13km_debug_intel' [16:27, 12:44](1148 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:33, 13:02](831 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [19:03, 13:57](1148 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:44, 12:55](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:19, 07:17] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:46, 04:36](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [23:19, 17:52] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:35, 04:42](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:02, 06:03](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:58, 06:36](763 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:29, 10:45](771 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:02, 11:48](804 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:33, 04:42](470 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:45, 05:46](490 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:03, 02:20](387 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:15, 06:17](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:16, 03:22](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:25, 03:08](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:31, 03:51](582 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:37, 01:14](426 MB) -PASS -- TEST 'gnv1_nested_intel' [09:34, 04:08](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:14, 08:38] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:27, 12:45](620 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:21, 17:24] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:39, 06:54](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:35, 06:59](683 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:18, 19:00] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:05, 05:24](671 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:19, 15:49] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:37, 05:46](731 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:42, 05:49](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:25, 16:12](897 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:18, 08:30] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:33](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:56, 01:36](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:25](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:43, 02:27](649 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:51, 02:26](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:52, 02:32](755 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:45, 02:33](770 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:53, 02:24](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:08, 05:51](701 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:28, 05:50](681 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:33, 02:32](770 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:53, 03:58](2040 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:01, 03:57](2039 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 05:53] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:41, 05:10](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:14, 08:35] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:51, 02:32](757 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:19, 02:43] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:06, 01:12](313 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:42, 01:09](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:41, 00:47](453 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:16, 13:55] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:15, 03:47](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:19, 12:47] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:39, 05:08](1901 MB) - -PASS -- COMPILE 'atml_intel' [16:19, 14:37] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:47, 07:17](1880 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:52, 06:52](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:07, 03:57](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:16, 10:39] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:02, 06:21](1936 MB) - -PASS -- COMPILE 'atmw_intel' [17:19, 14:13] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:41, 02:29](1882 MB) - -PASS -- COMPILE 'atmaero_intel' [15:16, 12:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:08, 04:19](3130 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:16, 04:20](3004 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:32, 04:24](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:13, 08:01] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:21, 22:10](4544 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:17, 11:25] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:51, 08:08](843 MB) +PASS -- COMPILE 's2swa_32bit_intel' [24:21, 21:45] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:19, 06:33](3210 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:29, 23:22] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:10, 14:17](1906 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:27, 15:11](1950 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:52, 07:05](1082 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:15, 16:09](1878 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:29, 23:14] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:27, 14:00](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:23, 11:44] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:12, 23:06](1936 MB) + +PASS -- COMPILE 's2swa_intel' [24:30, 21:34] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:53, 08:09](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:44, 08:10](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:17, 05:06](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:33, 08:10](3251 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:07, 04:57](3181 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:29, 13:43](3811 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:20, 07:57](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:12, 06:43](3538 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:40, 08:11](3233 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:07, 09:00](3816 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [17:05, 06:12](3637 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:37, 10:08](4544 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [39:21, 07:01](4756 MB) + +PASS -- COMPILE 's2swal_intel' [24:30, 22:05] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [13:35, 08:22](3232 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:08, 04:52](3157 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:10, 08:05](3208 MB) + +PASS -- COMPILE 's2sw_intel' [22:26, 19:48] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:36, 04:44](1927 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:47, 07:03](1990 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:23, 11:48] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [21:55, 12:36](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:20, 11:00] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:37, 05:59](1962 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:25, 16:16] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:44, 05:00](1985 MB) + +PASS -- COMPILE 's2s_intel' [24:20, 16:40] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:42, 05:44](2886 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:40, 02:07](2903 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:24, 01:27](2294 MB) + +PASS -- COMPILE 's2swa_faster_intel' [32:22, 23:52] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:24, 08:15](3232 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [30:21, 21:52] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:58, 14:03](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:08, 07:18](1111 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:47, 16:03](1890 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:27, 11:06] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:51, 25:01](1953 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:27, 14:20] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:51, 03:26](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:37, 02:09](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:57, 02:10](1573 MB) +PASS -- TEST 'control_latlon_intel' [07:38, 02:08](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:41, 02:07](1570 MB) +PASS -- TEST 'control_c48_intel' [11:39, 05:41](1588 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:44, 05:15](710 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:36, 05:43](1592 MB) +PASS -- TEST 'control_c192_intel' [12:17, 06:06](1690 MB) +PASS -- TEST 'control_c384_intel' [14:44, 06:47](2004 MB) +PASS -- TEST 'control_c384gdas_intel' [19:10, 07:12](1176 MB) +PASS -- TEST 'control_stochy_intel' [04:50, 01:26](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:32, 00:54](433 MB) +PASS -- TEST 'control_lndp_intel' [05:42, 01:22](624 MB) +PASS -- TEST 'control_iovr4_intel' [04:56, 02:08](621 MB) +PASS -- TEST 'control_iovr5_intel' [04:41, 02:07](621 MB) +PASS -- TEST 'control_p8_intel' [09:33, 02:58](1863 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:40, 03:10](1854 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:26, 03:05](1858 MB) +PASS -- TEST 'control_restart_p8_intel' [22:33, 01:58](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:25, 03:00](1854 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [19:30, 01:51](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:37, 03:04](1851 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:35, 04:50](1934 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:24, 04:43](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:30, 03:59](1904 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:25, 03:14](1858 MB) +PASS -- TEST 'merra2_thompson_intel' [12:19, 03:31](1866 MB) +PASS -- TEST 'regional_control_intel' [11:49, 04:52](914 MB) +PASS -- TEST 'regional_restart_intel' [05:57, 02:54](916 MB) +PASS -- TEST 'regional_decomp_intel' [11:47, 05:05](917 MB) +PASS -- TEST 'regional_noquilt_intel' [10:53, 04:40](1223 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:59, 04:45](916 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:53, 04:48](916 MB) +PASS -- TEST 'regional_wofs_intel' [11:50, 05:54](1620 MB) + +PASS -- COMPILE 'rrfs_intel' [15:17, 12:52] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:14, 06:10](1018 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [26:53, 03:37](1195 MB) +PASS -- TEST 'rap_decomp_intel' [13:17, 06:26](1012 MB) +PASS -- TEST 'rap_2threads_intel' [32:07, 11:28](1091 MB) +PASS -- TEST 'rap_restart_intel' [16:19, 03:14](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [25:20, 06:09](1014 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [25:11, 06:24](1012 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [12:23, 04:37](886 MB) +PASS -- TEST 'hrrr_control_intel' [21:26, 03:13](1008 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [22:06, 03:20](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [23:23, 05:43](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [11:42, 01:49](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [22:15, 06:01](1012 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [23:41, 08:04](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:41, 07:48](1952 MB) + +PASS -- COMPILE 'csawmg_intel' [13:15, 11:42] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:13, 06:32](965 MB) +PASS -- TEST 'control_ras_intel' [05:39, 02:55](664 MB) + +PASS -- COMPILE 'wam_intel' [13:18, 11:33] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:26, 10:18](1645 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:24, 12:10] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:36, 03:11](1858 MB) +PASS -- TEST 'regional_control_faster_intel' [07:46, 04:39](920 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 14:35] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [17:07, 02:19](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [17:06, 02:15](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [17:37, 02:52](815 MB) +PASS -- TEST 'control_lndp_debug_intel' [17:36, 02:36](814 MB) +PASS -- TEST 'control_csawmg_debug_intel' [18:59, 04:38](1118 MB) +PASS -- TEST 'control_ras_debug_intel' [16:32, 02:41](819 MB) +PASS -- TEST 'control_diag_debug_intel' [16:30, 02:39](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [16:00, 03:11](1902 MB) +PASS -- TEST 'regional_debug_intel' [29:08, 16:27](951 MB) +PASS -- TEST 'rap_control_debug_intel' [16:40, 04:42](1205 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:36, 04:45](1198 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [14:41, 04:46](1201 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [13:35, 04:48](1199 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 04:41](1205 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:16, 05:01](1279 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:53, 04:46](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:52, 04:49](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [13:46, 04:44](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:45, 04:43](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:45, 04:42](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:40, 04:44](1201 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:38, 07:45](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [13:48, 04:40](1191 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [13:44, 04:41](1201 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:45, 04:46](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:17, 07:59](1198 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:17, 07:18] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:34, 12:03](1693 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:22, 11:34] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:29, 03:31](1050 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:20, 05:09](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:08, 02:47](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:17, 09:35](938 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:22, 04:56](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:06, 02:54](884 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:05, 03:56](798 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:45, 01:36](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 11:21] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:16, 01:44](1105 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:58, 01:14](1113 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [13:31, 01:05](1000 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 11:40] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:02, 03:39](925 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:15, 07:34] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:34, 04:40](1076 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:46, 04:34](1074 MB) +PASS -- TEST 'conus13km_debug_intel' [16:13, 12:52](1174 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:20, 12:47](866 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:08, 13:54](1178 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:13, 12:43](1244 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:15, 07:17] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:35, 04:44](1118 MB) + +PASS -- COMPILE 'hafsw_intel' [21:17, 17:48] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [16:41, 04:32](764 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:15, 05:10](1074 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:01, 06:24](794 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [23:39, 10:45](825 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:02, 11:39](830 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:18, 04:39](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:40, 05:46](489 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [11:58, 02:18](390 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:05, 06:10](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:16, 03:18](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:19, 03:06](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:31, 03:48](580 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [12:32, 01:14](424 MB) +PASS -- TEST 'gnv1_nested_intel' [16:39, 04:07](1701 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:23, 08:38] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:27, 12:02](621 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:19, 17:26] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:28, 06:58](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:32, 07:05](690 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [26:26, 19:04] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:28, 05:20](674 MB) + +PASS -- COMPILE 'hafs_all_intel' [22:25, 16:02] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:36, 05:38](849 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:34, 05:41](839 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:16, 16:18](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:15, 08:35] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:35, 02:32](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:44, 01:34](746 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:31, 02:23](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:29, 02:27](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:21, 02:26](651 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:37, 02:33](770 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 02:32](769 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:37, 02:24](649 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:05, 05:47](702 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:08, 05:45](683 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 02:30](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:28, 03:56](2040 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 03:57](2039 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:22, 05:51] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:33, 05:09](740 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:15, 08:31] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 02:32](757 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:13, 02:44] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:42, 01:11](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:33, 01:04](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:43, 00:43](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:25, 14:02] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:28, 03:47](1904 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [31:25, 12:50] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:27, 04:58](1902 MB) + +PASS -- COMPILE 'atml_intel' [30:19, 15:14] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [12:00, 06:23](1882 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 03:41](1039 MB) + +PASS -- COMPILE 'atml_debug_intel' [25:17, 11:09] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:44, 05:29](1915 MB) + +PASS -- COMPILE 'atmw_intel' [27:24, 13:53] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:33, 02:17](1876 MB) + +PASS -- COMPILE 'atmaero_intel' [25:23, 12:59] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:54, 04:16](3125 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:43, 04:20](3002 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:18, 04:25](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [19:27, 08:00] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:52, 21:51](4536 MB) + +PASS -- COMPILE 'atm_fbh_intel' [22:17, 11:22] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:39, 08:06](849 MB) SYNOPSIS: -Starting Date/Time: 20250117 18:15:58 -Ending Date/Time: 20250117 20:10:30 -Total Time: 01h:55m:39s -Compiles Completed: 42/42 -Tests Completed: 186/186 +Starting Date/Time: 20250210 12:43:07 +Ending Date/Time: 20250210 15:04:14 +Total Time: 02h:22m:27s +Compiles Completed: 43/43 +Tests Completed: 187/187 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index 2ddcc3f840..8a0accd4c9 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,20 +1,20 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d +892355764fdbb830952d42259e9c98bff756411b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - 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) + 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) + 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 951a5967c998c3694f142d3a47d746c583f30012 FV3 (remotes/origin/rrfsv1-to-ufs/dev6) + da13577f5356ba7939c52f37bb67980421e5d4eb FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev6) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + 5f2085787cfa4148bb6a3a229537e37fd9c31319 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5576-g5f208578) 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) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 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) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + 8e676278822292a97b2b69da336444ec7d04c06b WW3 (6.07.1-353-g8e676278) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,307 +38,310 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1675678 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250205 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_724040 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:23, 19:13] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:10, 08:17](3185 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:23, 20:52] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:29, 15:15](1899 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:08, 15:49](1925 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:01, 07:34](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:29, 17:12](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:22, 19:20] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:47, 15:19](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:13, 10:55] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:10, 26:18](1922 MB) - -PASS -- COMPILE 's2swa_intel' [22:23, 20:21] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:40, 10:50](3218 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:52, 09:40](3215 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:07, 06:04](3140 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:44, 09:39](3236 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:50, 06:23](3162 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:03, 10:35](3441 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:44, 09:27](3211 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:44, 08:49](3161 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:16, 10:07](3220 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:47, 10:41](3486 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:47, 07:20](3597 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:54, 12:57](4276 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:56, 08:38](4368 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:08, 10:36](3193 MB) - -PASS -- COMPILE 's2sw_intel' [19:14, 18:03] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:07, 06:08](1915 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:09, 08:10](1974 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:16, 11:03] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [18:07, 14:56](3267 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:14, 10:12] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:03, 07:37](1943 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:23, 13:10] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:23, 07:33](1978 MB) - -PASS -- COMPILE 's2s_intel' [15:20, 13:35] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:11, 07:22](2880 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:12, 03:22](2883 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:40, 01:28](2298 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:17, 18:46] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:20, 10:22](3213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:13, 19:55] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:30, 14:53](1912 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:58, 07:34](1088 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:58, 17:15](1898 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:12, 10:28] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:57, 27:10](1939 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:19, 11:34] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:24, 05:07](655 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:43, 03:34](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:07, 03:45](1563 MB) -PASS -- TEST 'control_latlon_intel' [04:59, 02:40](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:10, 03:30](1557 MB) -PASS -- TEST 'control_c48_intel' [10:11, 07:09](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:48, 06:25](697 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:47, 06:43](1571 MB) -PASS -- TEST 'control_c192_intel' [09:45, 07:14](1679 MB) -PASS -- TEST 'control_c384_intel' [16:56, 14:31](1963 MB) -PASS -- TEST 'control_c384gdas_intel' [17:33, 14:54](1165 MB) -PASS -- TEST 'control_stochy_intel' [04:22, 01:57](609 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:25, 01:53](417 MB) -PASS -- TEST 'control_lndp_intel' [05:21, 02:41](608 MB) -PASS -- TEST 'control_iovr4_intel' [05:25, 03:49](604 MB) -PASS -- TEST 'control_iovr5_intel' [06:23, 03:54](607 MB) -PASS -- TEST 'control_p8_intel' [06:47, 04:18](1844 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:54, 03:09](1839 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:33](1847 MB) -PASS -- TEST 'control_restart_p8_intel' [05:47, 03:17](996 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:33](1841 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:38](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:40, 03:34](1838 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:47, 03:43](1923 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:33, 06:16](1845 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:40, 05:18](1900 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:51, 03:43](1849 MB) -PASS -- TEST 'merra2_thompson_intel' [05:45, 03:35](1848 MB) -PASS -- TEST 'regional_control_intel' [08:32, 06:21](877 MB) -PASS -- TEST 'regional_restart_intel' [05:26, 03:12](862 MB) -PASS -- TEST 'regional_decomp_intel' [09:31, 06:32](862 MB) -PASS -- TEST 'regional_2threads_intel' [07:29, 05:39](1004 MB) -PASS -- TEST 'regional_noquilt_intel' [08:32, 06:20](1206 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:37, 06:19](880 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:39](874 MB) -PASS -- TEST 'regional_wofs_intel' [10:35, 07:51](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [12:19, 10:33] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:47, 08:00](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:32](1167 MB) -PASS -- TEST 'rap_decomp_intel' [09:52, 07:50](992 MB) -PASS -- TEST 'rap_2threads_intel' [10:45, 08:06](1071 MB) -PASS -- TEST 'rap_restart_intel' [07:46, 05:11](871 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:51, 07:35](988 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:51, 07:42](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:45, 05:24](876 MB) -PASS -- TEST 'hrrr_control_intel' [07:00, 04:24](987 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 04:26](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:11, 05:04](1060 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:32, 03:33](821 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:50, 06:58](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:35, 09:38](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:25, 08:55](1931 MB) - -PASS -- COMPILE 'csawmg_intel' [14:13, 12:38] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:39, 08:07](942 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:19](645 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:05] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:02, 13:20](1635 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:16, 13:00] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:52, 04:37](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [06:34, 04:32](877 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:13, 12:23] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:39, 04:22](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:36, 04:15](1583 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:22, 04:23](779 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:23](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:39](1085 MB) -PASS -- TEST 'control_ras_debug_intel' [05:21, 03:11](789 MB) -PASS -- TEST 'control_diag_debug_intel' [05:34, 02:56](1643 MB) -PASS -- TEST 'control_debug_p8_intel' [06:59, 03:02](1878 MB) -PASS -- TEST 'regional_debug_intel' [19:28, 16:31](886 MB) -PASS -- TEST 'rap_control_debug_intel' [08:20, 05:21](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:22, 05:08](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:22, 05:21](1160 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 05:17](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:12](1169 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:37](1247 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:11](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:10](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:24, 05:24](1163 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:09](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:23, 05:13](1158 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 05:13](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 07:56](1162 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:21, 05:15](1157 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:31](1163 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:20, 05:24](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 08:41](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 06:55] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:45, 13:29](1661 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:25] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:59, 03:47](1042 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:48, 05:58](869 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:41, 03:22](864 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:40, 06:54](918 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:40, 03:38](912 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:52, 03:38](863 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:56, 04:10](779 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:28, 01:52](750 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 12:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:58, 02:11](1073 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:51, 01:04](1054 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [11:52, 01:26](949 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:10] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 04:25](894 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:12, 07:16] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 05:01](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 04:58](1037 MB) -PASS -- TEST 'conus13km_debug_intel' [16:02, 13:46](1127 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:04, 13:48](800 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:57, 11:08](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:57, 13:56](1192 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:12, 09:19] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 05:00](1069 MB) - -PASS -- COMPILE 'hafsw_intel' [15:13, 13:58] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:09](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 04:23](1082 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:21, 07:49](745 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:09, 11:35](780 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:30, 12:57](806 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:05, 05:31](471 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:20, 06:38](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:50, 02:46](398 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:01, 07:34](489 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:39, 03:53](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:48, 03:54](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [16:11, 04:36](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:39, 01:33](426 MB) -PASS -- TEST 'gnv1_nested_intel' [13:46, 05:45](1695 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 08:02] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:12, 13:35](613 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:13, 15:34] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:08, 07:35](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:20, 07:49](813 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:14, 14:57] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:26, 06:03](811 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:12, 11:42] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:09, 06:21](741 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:11, 06:22](723 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:10, 20:12](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:13, 11:57] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:49, 02:43](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:35, 03:09](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:00, 02:32](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:33](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 02:32](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:21, 02:39](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:21, 02:45](754 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:22, 02:34](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:52, 06:14](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:50, 06:32](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:19, 02:47](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:22, 04:47](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 04:48](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:39] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:22, 05:32](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:12, 10:28] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:29, 02:38](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:44, 02:09](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:35, 03:35](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:36, 03:02](462 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:13, 01:43] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [04:46, 02:08](449 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:44, 00:23](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:12, 14:58] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:14, 03:59](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:34] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:39, 07:28](1906 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 11:49] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:45, 07:35](1874 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:34, 10:46](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:39, 07:06](1015 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:13] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:16, 07:01](1911 MB) - -PASS -- COMPILE 'atmw_intel' [12:12, 10:46] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:12, 04:43](1882 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 11:35] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:15, 09:09](3098 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:05, 07:39](2981 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:03, 09:19](2994 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:13, 07:48] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:23, 21:21](4446 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:13, 10:44] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:38, 09:34](826 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:12, 18:22] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [20:08, 17:06](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:13, 10:05] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [32:05, 28:34](1927 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:15, 19:28] -PASS -- TEST 'cpld_control_sfs_intelllvm' [16:46, 14:19](1902 MB) - -PASS -- COMPILE 's2swa_intelllvm' [16:11, 14:39] -PASS -- TEST 'cpld_control_p8_intelllvm' [14:23, 10:50](3217 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:12, 15:28] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:19, 08:42](3183 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:12, 19:21] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:14, 14:52](1908 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:10, 16:10](1946 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:02, 07:21](1069 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:04, 17:02](1875 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:12, 18:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:53, 14:23](1893 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:12, 09:37] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:09, 26:11](1931 MB) + +PASS -- COMPILE 's2swa_intel' [17:12, 15:20] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:23, 10:20](3217 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:21, 10:14](3216 MB) +PASS -- TEST 'cpld_restart_p8_intel' [22:27, 06:07](3139 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:13, 10:14](3239 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [23:18, 07:01](3161 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:15, 10:26](3438 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:06, 10:02](3213 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:14, 08:39](3250 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:25, 09:58](3218 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:28, 10:24](3488 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [22:11, 07:35](3598 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [41:06, 12:07](4275 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:07, 08:15](4438 MB) + +PASS -- COMPILE 's2swal_intel' [17:12, 15:53] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [18:26, 10:55](3219 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [21:18, 06:13](3143 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:04, 09:54](3199 MB) + +PASS -- COMPILE 's2sw_intel' [15:15, 13:45] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:28, 05:05](1918 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:11, 07:29](1973 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:03] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:26, 14:36](3270 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:12, 09:13] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:07, 06:55](1941 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:15, 12:12] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:08, 05:16](1977 MB) + +PASS -- COMPILE 's2s_intel' [18:11, 16:32] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [22:47, 05:38](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [18:48, 01:47](2879 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:47, 01:19](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:58] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [28:36, 09:56](3219 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:48] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:24, 15:03](1909 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:00, 07:11](1097 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:05, 17:10](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:17, 11:58] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:13, 27:15](1936 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:17, 13:40] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [21:28, 03:46](657 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [20:43, 03:01](1555 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:43, 02:59](1561 MB) +PASS -- TEST 'control_latlon_intel' [17:38, 02:59](1562 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:44, 02:40](1561 MB) +PASS -- TEST 'control_c48_intel' [11:42, 06:06](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:33, 05:45](692 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:54, 07:03](1572 MB) +PASS -- TEST 'control_c192_intel' [10:38, 07:24](1683 MB) +PASS -- TEST 'control_c384_intel' [17:06, 14:32](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [18:52, 15:26](1178 MB) +PASS -- TEST 'control_stochy_intel' [04:31, 02:15](614 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:27, 00:59](415 MB) +PASS -- TEST 'control_lndp_intel' [04:30, 02:02](613 MB) +PASS -- TEST 'control_iovr4_intel' [04:35, 02:49](611 MB) +PASS -- TEST 'control_iovr5_intel' [04:34, 02:51](610 MB) +PASS -- TEST 'control_p8_intel' [05:58, 03:37](1849 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:30, 03:34](1848 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:45, 03:09](1847 MB) +PASS -- TEST 'control_restart_p8_intel' [04:07, 01:40](1000 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:07, 02:58](1849 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:00, 01:42](1003 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:59, 03:09](1836 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:51, 03:14](1923 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 04:55](1853 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:01, 04:15](1901 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:46, 03:18](1852 MB) +PASS -- TEST 'merra2_thompson_intel' [06:35, 03:33](1855 MB) +PASS -- TEST 'regional_control_intel' [06:31, 04:41](891 MB) +PASS -- TEST 'regional_restart_intel' [06:21, 02:29](905 MB) +PASS -- TEST 'regional_decomp_intel' [08:08, 04:47](910 MB) +PASS -- TEST 'regional_2threads_intel' [05:35, 03:39](1028 MB) +PASS -- TEST 'regional_noquilt_intel' [07:18, 04:33](1213 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:14, 04:39](893 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:19, 04:42](892 MB) +PASS -- TEST 'regional_wofs_intel' [08:32, 06:41](1603 MB) + +PASS -- COMPILE 'rrfs_intel' [13:13, 12:02] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [25:18, 06:53](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:09, 03:58](1219 MB) +PASS -- TEST 'rap_decomp_intel' [26:00, 07:08](997 MB) +PASS -- TEST 'rap_2threads_intel' [26:57, 08:04](1065 MB) +PASS -- TEST 'rap_restart_intel' [06:42, 03:31](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [26:17, 06:43](999 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [26:07, 07:07](999 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 04:52](879 MB) +PASS -- TEST 'hrrr_control_intel' [22:03, 03:46](997 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [22:03, 03:47](996 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [23:07, 04:07](1067 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:30, 01:54](826 MB) +PASS -- TEST 'rrfs_v1beta_intel' [26:20, 06:38](997 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [27:44, 09:09](1950 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:45, 08:47](1937 MB) + +PASS -- COMPILE 'csawmg_intel' [13:13, 11:55] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:34, 07:09](952 MB) +PASS -- TEST 'control_ras_intel' [06:22, 03:53](654 MB) + +PASS -- COMPILE 'wam_intel' [13:13, 11:42] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:44, 11:51](1634 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 11:45] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:20, 03:55](1851 MB) +PASS -- TEST 'regional_control_faster_intel' [07:53, 04:55](904 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:11, 13:21] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:50, 02:38](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:59, 02:35](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:31, 03:26](791 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:30, 02:58](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:39, 04:20](1090 MB) +PASS -- TEST 'control_ras_debug_intel' [07:35, 02:52](794 MB) +PASS -- TEST 'control_diag_debug_intel' [07:27, 02:57](1640 MB) +PASS -- TEST 'control_debug_p8_intel' [07:16, 02:57](1876 MB) +PASS -- TEST 'regional_debug_intel' [21:39, 16:41](934 MB) +PASS -- TEST 'rap_control_debug_intel' [09:25, 05:05](1174 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:33, 04:55](1167 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:29, 05:00](1173 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:22, 05:17](1173 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:58, 05:13](1174 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:57, 05:16](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 05:16](1172 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:28, 05:09](1174 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:43, 05:03](1175 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 05:08](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:26, 04:58](1170 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 05:04](1171 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:10](1169 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 04:55](1168 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:04](1174 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:28, 05:04](1178 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:48, 08:54](1178 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:10, 08:13] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:57, 13:35](1664 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:57] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:05, 03:52](1083 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:42, 05:54](880 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:43, 03:16](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:41, 06:47](917 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:38](915 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:38, 03:23](876 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:49, 04:09](784 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:40](759 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 11:19] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:58, 02:08](1102 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:53, 00:59](1089 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:57, 01:17](996 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:34] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:26](917 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:45] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:27, 05:30](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 05:20](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [17:42, 13:24](1155 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:14, 13:34](849 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:03, 10:56](1141 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:59, 13:18](1217 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 08:29] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1090 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 14:50] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:34, 05:02](851 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 04:14](1158 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:29](873 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:27](911 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:31, 12:39](938 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:25, 05:17](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 06:38](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 02:43](400 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 07:45](488 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:56, 03:41](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:57, 03:29](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:02, 04:33](590 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:34, 01:32](428 MB) +PASS -- TEST 'gnv1_nested_intel' [08:49, 05:08](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:10, 09:51] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:21, 12:52](617 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:08] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:08, 07:39](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:14, 07:38](813 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 13:59] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:33, 06:00](811 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 12:48] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:10, 06:05](867 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:12](851 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:17, 20:08](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 11:00] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:44](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 01:45](741 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 02:35](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 02:36](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:21, 02:47](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:36](764 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:26, 02:54](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:55, 02:32](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:47, 06:21](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:46, 06:10](678 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:42](752 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 04:49](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 04:49](2034 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:10, 06:07] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:54, 05:29](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 10:33] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:24, 02:47](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:59] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:44, 01:59](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:39, 02:06](463 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:48, 00:59](463 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:10, 02:12] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [04:09, 01:17](448 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:23, 00:39](251 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:35] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:35, 04:12](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:12, 12:32] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:18, 05:28](1907 MB) + +PASS -- COMPILE 'atml_intel' [15:15, 13:31] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [11:28, 08:11](1876 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:40, 04:36](1026 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:12, 09:18] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:19, 05:56](1903 MB) + +PASS -- COMPILE 'atmw_intel' [16:15, 14:38] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:15, 02:30](1870 MB) + +PASS -- COMPILE 'atmaero_intel' [16:15, 14:38] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:01, 06:14](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:55, 06:34](2982 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:51, 07:12](3000 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:11, 07:35] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:40, 19:18](4465 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:59] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:39, 09:30](835 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:15, 20:57] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:40, 15:33](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [14:11, 13:01] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [29:19, 26:27](1927 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [22:12, 20:53] +PASS -- TEST 'cpld_control_sfs_intelllvm' [18:54, 16:01](1900 MB) + +PASS -- COMPILE 's2swa_intelllvm' [19:13, 17:14] +PASS -- TEST 'cpld_control_p8_intelllvm' [15:22, 10:59](3217 MB) SYNOPSIS: -Starting Date/Time: 20250120 16:23:25 -Ending Date/Time: 20250120 18:18:48 -Total Time: 01h:56m:36s -Compiles Completed: 47/47 -Tests Completed: 193/193 +Starting Date/Time: 20250210 15:25:50 +Ending Date/Time: 20250210 17:27:54 +Total Time: 02h:03m:14s +Compiles Completed: 48/48 +Tests Completed: 194/194 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 1b14596493..66f6973026 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: -8b8eac654f051017e26b76099b5eb7471f0a110d +892355764fdbb830952d42259e9c98bff756411b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - 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) + 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) + 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 951a5967c998c3694f142d3a47d746c583f30012 FV3 (remotes/origin/rrfsv1-to-ufs/dev6) + da13577f5356ba7939c52f37bb67980421e5d4eb FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev6) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + 5f2085787cfa4148bb6a3a229537e37fd9c31319 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5576-g5f208578) 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) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 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) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + 8e676278822292a97b2b69da336444ec7d04c06b WW3 (6.07.1-353-g8e676278) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,291 +38,294 @@ 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-20250107 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_163918 +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250205 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1648109 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [34:20, 33:06] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:37, 04:15](2029 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:11, 11:45] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:36, 10:23](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:36, 11:08](1946 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:33, 05:06](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:29, 12:09](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [03:22, 01:21] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:28, 10:13](1919 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:49] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [17:44, 16:12](1942 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:14] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:40, 07:09](2071 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:45, 05:18](2062 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:32, 03:44](1611 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:34, 05:20](2083 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:35, 03:03](1453 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:32, 06:06](2231 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:32, 05:10](2069 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:39, 04:14](2018 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:43, 05:17](2070 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [11:29, 06:13](2434 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [06:04, 03:56](2671 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [13:06, 06:50](3593 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:42, 05:04](3435 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:39, 05:16](1924 MB) - -PASS -- COMPILE 's2sw_intel' [09:11, 08:06] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [04:31, 03:03](1940 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:33, 04:33](1854 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:49] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:43, 08:37](2093 MB) - -PASS -- COMPILE 's2sw_debug_intel' [30:14, 28:52] ( 1418 warnings 1152 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:33, 03:56](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:57] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:33, 03:14](1988 MB) - -PASS -- COMPILE 's2s_intel' [08:11, 07:08] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:23, 04:11](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:24, 01:17](2883 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:20, 00:45](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [10:12, 08:48] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:38, 05:13](2066 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:12, 11:41] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:33, 10:23](1934 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:36, 05:11](1115 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:34, 12:09](1919 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:42] ( 1528 warnings 1891 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:34, 17:58](1962 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:34] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:21, 02:32](532 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 01:40](1430 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 01:44](1434 MB) -PASS -- TEST 'control_latlon_intel' [03:24, 01:38](1431 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:29, 02:19](1430 MB) -PASS -- TEST 'control_c48_intel' [06:26, 04:36](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 04:18](696 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:26, 04:35](1575 MB) -PASS -- TEST 'control_c192_intel' [07:31, 04:45](1683 MB) -PASS -- TEST 'control_c384_intel' [12:39, 09:40](1964 MB) -PASS -- TEST 'control_c384gdas_intel' [14:01, 09:59](1176 MB) -PASS -- TEST 'control_stochy_intel' [03:20, 01:11](489 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:45](290 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:06](488 MB) -PASS -- TEST 'control_iovr4_intel' [03:20, 01:42](484 MB) -PASS -- TEST 'control_iovr5_intel' [03:21, 01:42](484 MB) -PASS -- TEST 'control_p8_intel' [03:25, 01:53](1730 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:30, 02:02](1729 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 01:53](1725 MB) -PASS -- TEST 'control_restart_p8_intel' [03:20, 01:07](873 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:27, 01:53](1712 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:07](882 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:26, 01:56](1724 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:24, 02:08](1797 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:24, 03:17](1725 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:27, 02:36](1778 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:28, 02:02](1734 MB) -PASS -- TEST 'merra2_thompson_intel' [04:24, 02:14](1727 MB) -PASS -- TEST 'regional_control_intel' [05:21, 03:22](877 MB) -PASS -- TEST 'regional_restart_intel' [04:20, 01:52](861 MB) -PASS -- TEST 'regional_decomp_intel' [05:20, 03:31](880 MB) -PASS -- TEST 'regional_2threads_intel' [04:18, 02:37](1015 MB) -PASS -- TEST 'regional_noquilt_intel' [05:20, 03:17](1208 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:21, 03:18](876 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:18, 03:22](876 MB) -PASS -- TEST 'regional_wofs_intel' [06:19, 04:22](1574 MB) - -PASS -- COMPILE 'rrfs_intel' [08:12, 06:12] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [06:25, 04:49](865 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:33, 02:49](1159 MB) -PASS -- TEST 'rap_decomp_intel' [06:20, 04:58](865 MB) -PASS -- TEST 'rap_2threads_intel' [07:20, 05:47](942 MB) -PASS -- TEST 'rap_restart_intel' [04:21, 02:30](741 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:24, 04:47](866 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:21, 05:00](869 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:22, 03:31](746 MB) -PASS -- TEST 'hrrr_control_intel' [04:25, 02:33](865 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:19, 02:38](861 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:20, 02:58](935 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:25](694 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:25, 04:44](863 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:17, 06:08](1817 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:16, 05:54](1814 MB) - -PASS -- COMPILE 'csawmg_intel' [07:12, 05:42] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [06:21, 04:13](821 MB) -PASS -- TEST 'control_ras_intel' [04:17, 02:13](520 MB) - -PASS -- COMPILE 'wam_intel' [07:12, 05:55] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:25, 07:30](1514 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:12, 06:04] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:27, 01:56](1724 MB) -PASS -- TEST 'regional_control_faster_intel' [05:20, 03:12](884 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 05:59] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:23, 01:36](1457 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:24, 01:34](1459 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:15, 02:04](659 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:16, 01:52](659 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:20, 02:50](966 MB) -PASS -- TEST 'control_ras_debug_intel' [03:16, 01:56](668 MB) -PASS -- TEST 'control_diag_debug_intel' [03:21, 01:49](1518 MB) -PASS -- TEST 'control_debug_p8_intel' [03:19, 01:47](1754 MB) -PASS -- TEST 'regional_debug_intel' [13:20, 11:20](891 MB) -PASS -- TEST 'rap_control_debug_intel' [05:16, 03:19](1042 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:18](1031 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:21](1037 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 03:23](1040 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 03:19](1040 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:20, 03:32](1126 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 03:26](1043 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:25](1038 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:21](1042 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:19](1044 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:19](1041 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 03:19](1043 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:22](1038 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:19](1035 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:19](1041 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 03:19](1044 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:25, 05:46](1044 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:05] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:22, 08:31](1548 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:54] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:35, 02:43](1039 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:23, 04:04](747 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:22, 02:13](740 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:19, 04:55](796 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:18, 02:34](788 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:19](740 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:21, 03:01](651 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:13](626 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:52] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:29, 01:22](953 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:19, 00:43](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:20, 00:53](828 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:00] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:23, 02:45](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 03:15] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 03:13](919 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 03:12](916 MB) -PASS -- TEST 'conus13km_debug_intel' [10:28, 09:01](1004 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [10:25, 09:01](674 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:25, 08:00](1140 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:25, 08:54](1072 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:10] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:20](944 MB) - -PASS -- COMPILE 'hafsw_intel' [09:11, 07:21] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:46, 03:37](713 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:18, 02:55](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:50, 04:47](787 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [10:45, 08:01](817 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:49, 08:41](836 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:35, 03:32](483 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:50, 04:21](486 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:27, 01:45](399 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:10, 04:41](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:30, 02:33](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:30, 02:23](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:31, 02:58](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 01:02](427 MB) -PASS -- TEST 'gnv1_nested_intel' [04:53, 02:56](1706 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:18] ( 1470 warnings 1424 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:30, 08:18](606 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:39] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [07:35, 05:03](639 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:35, 05:08](817 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 18:32] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:54, 03:51](793 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 07:44] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:43, 04:22](771 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:44, 04:38](748 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:35, 11:13](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:12, 04:49] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:04](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:03](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 01:54](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 01:55](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:13, 01:56](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:21, 01:42](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:43](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:37](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:31, 04:14](707 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:30, 04:08](688 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:42](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 02:46](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 02:46](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:26] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:45](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 04:54] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 01:43](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:38] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 01:00](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:49](463 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](462 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:32] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:30, 02:26](1790 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [59:15, 57:25] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:29, 03:13](1793 MB) - -PASS -- COMPILE 'atml_intel' [08:12, 06:33] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:31, 04:00](1897 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:28, 03:58](1898 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:19, 02:10](1035 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 03:35] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:29, 04:12](1921 MB) - -PASS -- COMPILE 'atmw_intel' [09:11, 07:16] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:16](1762 MB) - -PASS -- COMPILE 'atmaero_intel' [07:12, 05:59] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:28, 02:44](1947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:28, 03:16](1597 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:19](1610 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:00] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [15:46, 13:25](4446 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:19, 06:00](830 MB) +PASS -- COMPILE 's2swa_32bit_intel' [37:14, 36:09] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:38, 04:16](2040 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:26] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:32, 10:24](1924 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:33, 11:08](1950 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:27, 05:04](1082 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:24, 12:07](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:11, 11:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:23, 10:12](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [32:11, 30:19] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [18:31, 16:05](1949 MB) + +PASS -- COMPILE 's2swa_intel' [13:13, 11:46] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:44, 05:17](2064 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:48, 05:19](2066 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:31, 03:00](1622 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:38, 05:19](2090 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:33, 03:01](1454 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:36, 06:05](2235 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:37, 05:09](2061 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:44, 04:17](2021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:47, 05:18](2064 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [08:23, 05:57](2424 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [06:03, 03:57](2670 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [10:54, 06:49](3596 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [08:30, 04:21](3522 MB) + +PASS -- COMPILE 's2swal_intel' [10:11, 08:31] ( 6 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [07:36, 05:17](2079 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:32, 03:09](1621 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:31, 05:15](1931 MB) + +PASS -- COMPILE 's2sw_intel' [21:13, 19:40] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [04:35, 03:04](1944 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:37, 04:32](1856 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:58] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:42, 08:30](2091 MB) + +PASS -- COMPILE 's2sw_debug_intel' [25:11, 23:43] ( 1418 warnings 1152 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:30, 03:52](1959 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:10, 07:00] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:32, 03:13](1993 MB) + +PASS -- COMPILE 's2s_intel' [09:10, 07:16] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:23, 04:12](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:23, 01:17](2879 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:19, 00:47](2295 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:10, 09:07] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:36, 05:13](2070 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:21] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:33, 10:24](1934 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:26, 05:10](1114 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:36, 12:08](1922 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:48] ( 1528 warnings 1891 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:31, 17:44](1961 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:38] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:19, 02:36](536 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:32, 01:39](1429 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 01:42](1435 MB) +PASS -- TEST 'control_latlon_intel' [03:30, 01:38](1434 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:34, 01:40](1434 MB) +PASS -- TEST 'control_c48_intel' [06:33, 04:35](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:20, 04:18](692 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:32, 04:36](1568 MB) +PASS -- TEST 'control_c192_intel' [06:33, 04:47](1693 MB) +PASS -- TEST 'control_c384_intel' [12:45, 09:51](1971 MB) +PASS -- TEST 'control_c384gdas_intel' [13:05, 10:04](1189 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:10](491 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:15, 00:41](288 MB) +PASS -- TEST 'control_lndp_intel' [03:19, 01:06](488 MB) +PASS -- TEST 'control_iovr4_intel' [03:20, 01:39](486 MB) +PASS -- TEST 'control_iovr5_intel' [03:20, 01:41](482 MB) +PASS -- TEST 'control_p8_intel' [03:36, 01:54](1725 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:40, 02:01](1730 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:37, 01:55](1729 MB) +PASS -- TEST 'control_restart_p8_intel' [03:22, 01:08](872 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:36, 01:52](1725 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:05](861 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:36, 01:56](1720 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:33, 02:08](1806 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:31, 03:17](1721 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:36, 02:45](1784 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:37, 02:04](1734 MB) +PASS -- TEST 'merra2_thompson_intel' [04:24, 02:13](1714 MB) +PASS -- TEST 'regional_control_intel' [05:18, 03:23](907 MB) +PASS -- TEST 'regional_restart_intel' [03:17, 01:50](891 MB) +PASS -- TEST 'regional_decomp_intel' [05:18, 03:32](910 MB) +PASS -- TEST 'regional_2threads_intel' [04:18, 02:36](1026 MB) +PASS -- TEST 'regional_noquilt_intel' [05:20, 03:17](1209 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:22, 03:21](902 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:18, 03:20](908 MB) +PASS -- TEST 'regional_wofs_intel' [06:20, 04:26](1602 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 06:11] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [06:23, 04:47](875 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:33, 02:48](1198 MB) +PASS -- TEST 'rap_decomp_intel' [06:19, 04:55](874 MB) +PASS -- TEST 'rap_2threads_intel' [07:19, 05:45](949 MB) +PASS -- TEST 'rap_restart_intel' [04:19, 02:28](748 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:25, 04:44](880 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:24, 04:57](876 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:20, 03:31](743 MB) +PASS -- TEST 'hrrr_control_intel' [04:23, 02:31](878 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:18, 02:34](870 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:18, 02:54](944 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:15, 01:22](700 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:25, 04:42](879 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:17, 06:00](1826 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:17, 05:52](1819 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 05:51] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [06:17, 04:10](832 MB) +PASS -- TEST 'control_ras_intel' [04:15, 02:11](529 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 05:49] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:23, 07:32](1515 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:11, 06:13] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:24, 01:54](1720 MB) +PASS -- TEST 'regional_control_faster_intel' [05:17, 03:10](907 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 05:42] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:20, 01:35](1466 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:22, 01:33](1459 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:15, 02:02](666 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:15, 01:51](662 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:17, 02:50](971 MB) +PASS -- TEST 'control_ras_debug_intel' [03:15, 01:52](670 MB) +PASS -- TEST 'control_diag_debug_intel' [04:19, 01:47](1521 MB) +PASS -- TEST 'control_debug_p8_intel' [03:17, 01:49](1766 MB) +PASS -- TEST 'regional_debug_intel' [13:18, 11:07](922 MB) +PASS -- TEST 'rap_control_debug_intel' [05:15, 03:19](1051 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:15, 03:16](1048 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:21](1051 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:19](1047 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:21](1054 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:18, 03:29](1131 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:26](1051 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 03:24](1054 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:16, 03:19](1052 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:21](1047 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:18](1051 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:18](1048 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:15](1048 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:17](1044 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:18](1053 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:21](1050 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:24, 05:42](1048 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:09] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:23, 08:41](1551 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:52] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:32, 02:40](1079 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:22, 04:00](755 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:22, 02:09](755 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:18, 04:53](803 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:21, 02:32](796 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:18, 02:17](752 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:19, 03:00](655 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:15, 01:11](631 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:49] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:28, 01:19](979 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:19, 00:43](1112 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:19, 00:50](877 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:53] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:23, 02:43](792 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:22] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:14](928 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:11](926 MB) +PASS -- TEST 'conus13km_debug_intel' [11:21, 08:53](1032 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [11:21, 08:57](724 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:20, 07:49](1163 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:18, 08:54](1096 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:04] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:14](966 MB) + +PASS -- COMPILE 'hafsw_intel' [20:15, 18:46] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:49, 03:34](846 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:22, 02:53](1098 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:54, 04:41](912 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [10:52, 07:56](949 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [11:56, 08:48](965 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:41, 03:35](490 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:55, 04:25](483 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:30, 01:44](400 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:15, 04:42](460 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:33, 02:34](504 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 02:22](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:39, 02:59](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:23, 01:01](431 MB) +PASS -- TEST 'gnv1_nested_intel' [05:58, 02:56](1703 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 03:16] ( 1470 warnings 1424 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:36, 08:16](604 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:44] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:36, 05:01](638 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [07:35, 05:09](802 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:30] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:57, 03:54](799 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:11, 07:43] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:47, 04:15](899 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:46, 04:15](886 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:38, 10:58](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:11, 05:03] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 01:44](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:03](751 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 01:37](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:39](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:39](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 01:42](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:15, 01:35](641 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:29, 04:11](720 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:26, 04:06](689 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 01:43](752 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 02:46](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 02:47](2029 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [17:11, 15:43] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 03:47](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:07] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 01:43](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:59](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:48](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:19, 00:36](461 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:11, 06:35] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:33, 02:28](1793 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 06:10] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:29, 03:11](1789 MB) + +PASS -- COMPILE 'atml_intel' [08:11, 06:46] ( 14 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [07:31, 03:25](1884 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:19, 01:53](1045 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:01] ( 892 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:29, 03:45](1917 MB) + +PASS -- COMPILE 'atmw_intel' [09:11, 07:22] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:33, 01:19](1762 MB) + +PASS -- COMPILE 'atmaero_intel' [07:11, 06:00] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:31, 02:44](1945 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:29, 03:13](1597 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:24, 03:19](1613 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:11] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:50, 13:47](4461 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:36] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:19, 06:00](835 MB) SYNOPSIS: -Starting Date/Time: 20250120 16:27:12 -Ending Date/Time: 20250120 18:44:49 -Total Time: 02h:17m:58s -Compiles Completed: 42/42 -Tests Completed: 187/187 +Starting Date/Time: 20250210 15:41:25 +Ending Date/Time: 20250210 17:45:47 +Total Time: 02h:04m:45s +Compiles Completed: 43/43 +Tests Completed: 188/188 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 7ca73d83d6..eb45b0cb26 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,21 +1,21 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -56bfd86ccf3c69e9263950b543821416e61d0c43 +892355764fdbb830952d42259e9c98bff756411b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 55576eba972ad53cc6546f00d409fa27361f78bd CMEPS-interface/CMEPS (cmeps_v0.4.1-2312-g55576eb) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 951a5967c998c3694f142d3a47d746c583f30012 FV3 (remotes/origin/rrfsv1-to-ufs/dev6) 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) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + 8e676278822292a97b2b69da336444ec7d04c06b WW3 (6.07.1-353-g8e676278) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -26,390 +26,394 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_399661 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250205 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1143362 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:11, 12:41] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:32, 07:38](3303 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:27] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:13, 19:39](1993 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:22, 20:44](2191 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:17, 08:14](1270 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:10, 23:54](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:48, 19:17](1950 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:07] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:07, 25:29](1931 MB) - -PASS -- COMPILE 's2swa_intel' [15:12, 13:02] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:37, 09:38](3330 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:35, 09:21](3347 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:28, 04:43](3267 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:30, 09:11](3362 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:35, 04:43](3275 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:20, 09:01](3563 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:23, 08:49](3348 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [12:19, 07:26](3227 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:33, 08:47](3344 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:24, 10:34](3526 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:03, 06:49](3601 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:44, 10:21](4317 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:57, 06:37](4396 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:20, 07:46](3313 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 12:38] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:20, 06:18](1983 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:26, 06:27](2062 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:03] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:10, 14:05](3385 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 05:31] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:12, 06:44](2012 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:18] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:28, 04:28](2039 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 12:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:45, 07:59](3034 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:44, 02:25](3047 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:44, 01:30](2465 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:43] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:21, 08:25](3358 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:14, 17:39](2024 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:13, 08:23](1284 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:04, 20:35](1928 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:38] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:24, 26:36](1977 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:23, 03:24](706 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:45, 02:40](1589 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:48, 02:39](1599 MB) -PASS -- TEST 'control_latlon_intel' [04:39, 02:34](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:45, 02:39](1589 MB) -PASS -- TEST 'control_c48_intel' [09:44, 07:15](1717 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:28, 06:36](852 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:40, 07:10](1725 MB) -PASS -- TEST 'control_c192_intel' [09:59, 07:30](1747 MB) -PASS -- TEST 'control_c384_intel' [12:11, 08:10](1989 MB) -PASS -- TEST 'control_c384gdas_intel' [13:19, 08:12](1379 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:41](660 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:26, 01:00](501 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:42](660 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:36](655 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:31](649 MB) -PASS -- TEST 'control_p8_intel' [04:57, 02:58](1896 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 03:08](1888 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:53](1898 MB) -PASS -- TEST 'control_restart_p8_intel' [04:50, 01:42](1133 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:53, 02:54](1883 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:55, 01:48](1126 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:02](1871 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:45, 03:14](1953 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:41, 05:06](1898 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 04:11](1942 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:59, 03:35](1882 MB) -PASS -- TEST 'merra2_thompson_intel' [05:53, 03:31](1890 MB) -PASS -- TEST 'regional_control_intel' [07:35, 05:25](1118 MB) -PASS -- TEST 'regional_restart_intel' [04:36, 02:58](1098 MB) -PASS -- TEST 'regional_decomp_intel' [07:33, 05:42](1115 MB) -PASS -- TEST 'regional_2threads_intel' [06:39, 04:05](1064 MB) -PASS -- TEST 'regional_noquilt_intel' [07:41, 05:22](1422 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:23](1121 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:22](1119 MB) -PASS -- TEST 'regional_wofs_intel' [09:38, 07:08](1900 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:29] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:41, 07:54](1117 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 04:13](1269 MB) -PASS -- TEST 'rap_decomp_intel' [10:32, 08:13](1035 MB) -PASS -- TEST 'rap_2threads_intel' [10:33, 08:51](1088 MB) -PASS -- TEST 'rap_restart_intel' [06:41, 04:12](1082 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:51](1110 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:13](1030 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 05:52](1129 MB) -PASS -- TEST 'hrrr_control_intel' [05:43, 04:06](1033 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:34, 04:10](1032 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:33, 04:21](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:12](993 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:49, 07:44](1092 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:34, 09:49](1976 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:31, 09:29](2048 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 10:09] -PASS -- TEST 'control_csawmg_intel' [08:40, 06:16](1026 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:17](745 MB) - -PASS -- COMPILE 'wam_intel' [11:10, 10:01] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:51, 11:16](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 10:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:54, 02:47](1882 MB) -PASS -- TEST 'regional_control_faster_intel' [06:38, 04:57](1122 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 07:55] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:35](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:29](1622 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:09](831 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:50](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:42, 04:21](1144 MB) -PASS -- TEST 'control_ras_debug_intel' [04:25, 02:53](839 MB) -PASS -- TEST 'control_diag_debug_intel' [05:54, 02:48](1686 MB) -PASS -- TEST 'control_debug_p8_intel' [05:48, 02:56](1909 MB) -PASS -- TEST 'regional_debug_intel' [20:44, 17:50](1099 MB) -PASS -- TEST 'rap_control_debug_intel' [07:27, 05:05](1212 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:57](1207 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:00](1213 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 05:00](1210 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:24, 05:10](1201 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:39, 05:24](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 05:17](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 05:13](1206 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:27, 05:07](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 05:24](1209 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:08](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:08](1213 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:16](1212 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:07](1216 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 05:25](1209 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:02](1213 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 09:00](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:02] -PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:23](717 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:56] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:54, 13:46](1657 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 09:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:06, 03:54](1149 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:34](1057 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:25](987 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:35, 07:28](999 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:51](968 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:41](924 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 04:59](1032 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 01:54](923 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 10:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:52, 02:04](1188 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:00](1163 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:49, 01:13](1093 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 09:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:18](980 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:38] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 05:04](1089 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 05:02](1085 MB) -PASS -- TEST 'conus13km_debug_intel' [16:58, 14:42](1246 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 15:02](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:46, 12:34](1205 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 15:00](1269 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:29] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 05:07](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:16, 05:13](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:32, 06:06](1109 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:32, 07:14](813 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:24, 14:53](849 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:32, 19:08](832 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:07, 05:37](493 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:24, 06:58](512 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:49, 02:45](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:18, 07:29](469 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:52](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:56, 03:47](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:15](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:13](401 MB) -PASS -- TEST 'gnv1_nested_intel' [07:43, 04:16](1704 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:00] ( 1465 warnings 1444 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 13:07](579 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:05, 10:53](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:10, 10:23](694 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:29, 08:14](719 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:40](822 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:22, 06:41](800 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:02, 16:36](1207 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:56] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:09](1133 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 02:07](1083 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:50](1035 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:48](1031 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:45](1032 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:49](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:51](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:42](1029 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:21, 06:23](1073 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:28](1051 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:53](1162 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:30](2448 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:09](2512 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:19] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:31](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:39] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:52](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:03] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:48](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:53](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:36](324 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:37] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:32, 00:35](562 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:19](460 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:02] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:06, 03:45](1993 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 10:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:53, 04:48](1985 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:53] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:01, 04:27](1865 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:58, 04:35](1849 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:26](1093 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:37] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:53, 05:57](1886 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:37] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:53, 02:04](1917 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 10:44] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:57, 04:37](3198 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 05:05](3084 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:44, 05:18](3098 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:38] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [19:32, 16:58](1073 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:55] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:39, 08:46](1055 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:47] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [08:43, 05:40](979 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 04:17] -PASS -- TEST 'control_c48_gnu' [11:40, 09:33](1512 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 03:27](491 MB) -PASS -- TEST 'control_ras_gnu' [07:21, 04:59](496 MB) -PASS -- TEST 'control_p8_gnu' [06:54, 04:29](1449 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:51, 04:23](1469 MB) -PASS -- TEST 'control_flake_gnu' [12:27, 10:41](536 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 04:13] -PASS -- TEST 'rap_control_gnu' [13:37, 11:29](808 MB) -PASS -- TEST 'rap_decomp_gnu' [13:32, 11:41](811 MB) -PASS -- TEST 'rap_2threads_gnu' [20:38, 17:16](913 MB) -PASS -- TEST 'rap_restart_gnu' [08:39, 05:55](576 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [14:38, 11:32](809 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:34, 11:40](809 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:43, 08:31](584 MB) -PASS -- TEST 'hrrr_control_gnu' [08:33, 05:53](804 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:38, 05:53](795 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:34, 08:39](904 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [08:32, 06:02](832 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:28, 03:05](561 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:29, 03:02](651 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:49, 11:08](806 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:52] -PASS -- TEST 'control_csawmg_gnu' [10:37, 08:33](736 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:47] -PASS -- TEST 'control_diag_debug_gnu' [03:44, 01:40](1276 MB) -PASS -- TEST 'regional_debug_gnu' [13:38, 11:19](730 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:42](821 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:42](822 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:44](820 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:22, 02:40](820 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:40, 03:03](908 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:28, 04:28](809 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:26, 02:52](826 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:24, 02:40](818 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:38](454 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:49](453 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:40, 01:45](1441 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:41](819 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:21, 02:46](830 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:35, 04:31](816 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:26] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:07] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:36, 09:50](697 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:36, 05:12](698 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:35, 15:34](742 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:29, 07:58](733 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:29, 05:25](686 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:37, 07:18](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:27, 02:42](535 MB) -PASS -- TEST 'conus13km_control_gnu' [05:55, 03:15](866 MB) -PASS -- TEST 'conus13km_2threads_gnu' [04:46, 01:35](873 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:45, 01:50](558 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:58] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:40, 05:57](718 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:45] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:23, 02:38](710 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:23, 02:33](706 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:47, 06:55](881 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:46, 07:09](571 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:42, 05:47](890 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:41, 06:55](949 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:47] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:39](741 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:35] - -PASS -- COMPILE 's2s_gnu' [17:11, 16:05] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:07, 11:06](1511 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:11] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 15:56] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:01, 25:20](1454 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:59] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:33] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:08](692 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:14, 12:55] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:20, 07:34](3328 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:14, 16:22] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:12, 19:47](1997 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:38, 20:42](2179 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:27, 08:27](1269 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:02, 23:49](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 16:45] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:49, 19:29](1978 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:13, 06:00] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:17, 25:06](1954 MB) + +PASS -- COMPILE 's2swa_intel' [20:14, 13:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:52, 09:46](3359 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:46, 08:50](3381 MB) +PASS -- TEST 'cpld_restart_p8_intel' [21:38, 04:57](3315 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:41, 09:03](3406 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [21:48, 04:55](3333 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:34, 09:01](3567 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:36, 08:53](3388 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:44, 07:27](3246 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:41, 08:47](3401 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:12, 10:32](3526 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [22:11, 07:03](3763 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:18, 11:00](4331 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:05, 08:11](4462 MB) + +PASS -- COMPILE 's2swal_intel' [20:14, 13:43] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [13:45, 10:04](3315 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [21:49, 05:03](3231 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:40, 07:46](3351 MB) + +PASS -- COMPILE 's2sw_intel' [19:14, 12:41] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:51, 06:19](2008 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:10, 06:37](2091 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:13, 05:57] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [21:18, 14:06](3413 MB) + +PASS -- COMPILE 's2sw_debug_intel' [12:14, 05:55] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:08, 06:45](2043 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:13, 11:38] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:56, 04:33](2084 MB) + +PASS -- COMPILE 's2s_intel' [18:16, 11:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:52, 07:57](3035 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:47, 02:28](3040 MB) +PASS -- TEST 'cpld_restart_c48_intel' [15:54, 01:28](2481 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:12, 17:27] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:29, 08:32](3393 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:12, 16:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:28, 17:45](2051 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:33, 08:22](1289 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:11, 20:52](1944 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:51] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:05, 26:34](2004 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:13, 11:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [12:35, 03:29](719 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:56, 02:38](1616 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:01, 02:42](1603 MB) +PASS -- TEST 'control_latlon_intel' [11:50, 02:39](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:59, 02:51](1600 MB) +PASS -- TEST 'control_c48_intel' [09:52, 07:12](1730 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:31, 06:37](846 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:53, 07:13](1724 MB) +PASS -- TEST 'control_c192_intel' [17:17, 07:36](1809 MB) +PASS -- TEST 'control_c384_intel' [18:27, 08:27](1986 MB) +PASS -- TEST 'control_c384gdas_intel' [23:00, 08:26](1382 MB) +PASS -- TEST 'control_stochy_intel' [13:31, 01:45](669 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:34, 01:01](518 MB) +PASS -- TEST 'control_lndp_intel' [16:28, 01:40](673 MB) +PASS -- TEST 'control_iovr4_intel' [17:34, 02:33](668 MB) +PASS -- TEST 'control_iovr5_intel' [18:38, 02:38](666 MB) +PASS -- TEST 'control_p8_intel' [11:15, 03:02](1904 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:10, 03:17](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:01, 03:00](1905 MB) +PASS -- TEST 'control_restart_p8_intel' [06:01, 01:46](1135 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:07, 02:59](1897 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:08, 01:47](1159 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:02, 03:07](1894 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:00, 03:17](1978 MB) +PASS -- TEST 'control_p8_lndp_intel' [12:01, 05:09](1897 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:11, 04:27](1944 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:06, 03:12](1885 MB) +PASS -- TEST 'merra2_thompson_intel' [10:06, 03:29](1905 MB) +PASS -- TEST 'regional_control_intel' [10:46, 05:35](1150 MB) +PASS -- TEST 'regional_restart_intel' [05:43, 03:00](1167 MB) +PASS -- TEST 'regional_decomp_intel' [10:44, 05:46](1151 MB) +PASS -- TEST 'regional_2threads_intel' [07:42, 04:02](1102 MB) +PASS -- TEST 'regional_noquilt_intel' [08:42, 05:23](1451 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:45, 05:27](1151 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:43, 05:29](1157 MB) +PASS -- TEST 'regional_wofs_intel' [08:38, 07:05](1940 MB) + +PASS -- COMPILE 'rrfs_intel' [13:13, 10:34] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:46, 08:00](1119 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:14, 04:17](1336 MB) +PASS -- TEST 'rap_decomp_intel' [11:45, 08:19](1047 MB) +PASS -- TEST 'rap_2threads_intel' [11:43, 08:50](1141 MB) +PASS -- TEST 'rap_restart_intel' [10:00, 04:16](1109 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:48, 07:55](1112 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:48, 08:19](1057 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:55, 06:07](1135 MB) +PASS -- TEST 'hrrr_control_intel' [06:49, 04:16](1058 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:46, 04:13](1053 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:42, 04:28](1119 MB) +PASS -- TEST 'hrrr_control_restart_intel' [11:34, 02:23](1018 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:53, 07:45](1111 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [23:31, 09:43](1994 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:31, 09:42](2059 MB) + +PASS -- COMPILE 'csawmg_intel' [11:16, 10:05] +PASS -- TEST 'control_csawmg_intel' [14:49, 06:20](1048 MB) +PASS -- TEST 'control_ras_intel' [10:32, 03:25](764 MB) + +PASS -- COMPILE 'wam_intel' [12:13, 10:12] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [25:00, 11:32](1677 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:22] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [17:01, 02:51](1909 MB) +PASS -- TEST 'regional_control_faster_intel' [06:44, 05:02](1156 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:13, 07:49] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:53, 02:26](1637 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:51, 02:25](1631 MB) +PASS -- TEST 'control_stochy_debug_intel' [15:26, 03:09](842 MB) +PASS -- TEST 'control_lndp_debug_intel' [14:28, 02:55](840 MB) +PASS -- TEST 'control_csawmg_debug_intel' [16:43, 04:38](1149 MB) +PASS -- TEST 'control_ras_debug_intel' [14:26, 02:59](851 MB) +PASS -- TEST 'control_diag_debug_intel' [15:05, 03:17](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [13:50, 02:58](1929 MB) +PASS -- TEST 'regional_debug_intel' [28:47, 17:48](1139 MB) +PASS -- TEST 'rap_control_debug_intel' [16:32, 05:24](1231 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:33, 05:14](1228 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [14:29, 05:18](1234 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:28, 05:17](1240 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:34, 05:21](1228 MB) +PASS -- TEST 'rap_diag_debug_intel' [14:48, 05:44](1310 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:29, 05:20](1232 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:29, 05:22](1235 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:28, 05:24](1232 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:25, 05:15](1236 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:28, 05:17](1236 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 05:14](1236 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:23](1223 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 05:03](1227 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:07](1234 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 05:03](1227 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:52, 08:41](1236 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:13, 04:12] +PASS -- TEST 'control_csawmg_debug_gnu' [12:44, 02:30](712 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:12, 04:42] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:53, 13:41](1705 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 10:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:12, 04:01](1211 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:48, 06:41](1051 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:46, 03:31](994 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:47, 07:48](1000 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:47, 03:56](976 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:46, 03:48](935 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:46, 05:19](1048 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:32, 01:57](941 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:14, 10:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:11, 02:08](1244 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:08](1215 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:57, 01:59](1125 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:52, 04:25](1015 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:54] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:28, 05:15](1114 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:29, 04:57](1116 MB) +PASS -- TEST 'conus13km_debug_intel' [17:58, 14:23](1268 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:58, 14:36](989 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:51, 12:45](1278 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:50, 14:21](1354 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:47] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:31, 05:14](1191 MB) + +PASS -- COMPILE 'hafsw_intel' [14:13, 12:04] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:53, 05:03](895 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:43, 21:47](1158 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:47, 07:41](965 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:41, 14:48](1011 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:45, 18:50](1190 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:25, 06:23](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:50, 07:57](516 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:41, 02:54](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:15, 08:42](482 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:58, 04:32](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:38, 04:19](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:10, 04:44](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:37, 01:26](405 MB) +PASS -- TEST 'gnv1_nested_intel' [07:59, 04:47](1742 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [19:14, 05:19] ( 1465 warnings 1444 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:12, 13:12](598 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [25:14, 11:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:28, 10:24](651 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:39, 10:31](769 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [25:14, 11:51] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:11, 08:31](691 MB) + +PASS -- COMPILE 'hafs_all_intel' [24:14, 11:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:35, 07:03](966 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:38, 07:04](950 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:06, 16:22](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [18:14, 06:44] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 02:56](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 01:44](1116 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:21, 02:48](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 02:49](1042 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 02:51](1028 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:54](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 02:54](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 02:45](1028 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:49, 06:40](1076 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:47, 06:26](1051 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:52](1164 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:25, 04:09](2459 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 04:09](2523 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [15:13, 03:30] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 06:28](1089 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:14, 06:48] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:28, 02:52](1157 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:13, 01:09] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:37, 00:47](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 00:53](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:34, 00:32](325 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [08:15, 01:18] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:40, 00:35](571 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:44, 00:19](465 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:13, 11:04] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 03:55](2012 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:13, 10:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:01, 04:49](2011 MB) + +PASS -- COMPILE 'atml_intel' [14:14, 11:09] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:03, 03:58](1869 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:08](1101 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:13, 05:57] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:05, 05:21](1891 MB) + +PASS -- COMPILE 'atmw_intel' [13:13, 11:12] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:00, 02:01](1930 MB) + +PASS -- COMPILE 'atmaero_intel' [12:14, 10:44] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:07, 04:36](3189 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:10, 05:12](3099 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:06](3121 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:14, 04:49] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_fbh_intel' [20:13, 10:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [25:35, 23:22](1096 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [16:13, 07:04] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:54, 08:33](1061 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [15:12, 06:54] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:50, 05:01](1014 MB) + +PASS -- COMPILE 'atm_gnu' [13:13, 04:38] +PASS -- TEST 'control_c48_gnu' [12:12, 09:40](1507 MB) +PASS -- TEST 'control_stochy_gnu' [05:27, 03:42](493 MB) +PASS -- TEST 'control_ras_gnu' [06:25, 05:05](502 MB) +PASS -- TEST 'control_p8_gnu' [07:17, 04:36](1460 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:07, 04:33](1447 MB) +PASS -- TEST 'control_flake_gnu' [12:35, 10:43](538 MB) + +PASS -- COMPILE 'rrfs_gnu' [13:13, 04:33] +PASS -- TEST 'rap_control_gnu' [13:48, 11:53](837 MB) +PASS -- TEST 'rap_decomp_gnu' [13:40, 11:59](834 MB) +PASS -- TEST 'rap_2threads_gnu' [19:59, 17:25](907 MB) +PASS -- TEST 'rap_restart_gnu' [07:49, 05:56](567 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:49](835 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 12:05](838 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:53, 08:46](572 MB) +PASS -- TEST 'hrrr_control_gnu' [07:59, 06:05](803 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:42, 06:00](793 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:46, 08:50](901 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:45, 06:04](830 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:33, 03:12](560 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:32, 03:10](645 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:55, 11:34](802 MB) + +PASS -- COMPILE 'csawmg_gnu' [10:12, 04:19] +PASS -- TEST 'control_csawmg_gnu' [10:42, 08:45](732 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:19, 07:26] +PASS -- TEST 'control_diag_debug_gnu' [04:00, 01:48](1264 MB) +PASS -- TEST 'regional_debug_gnu' [13:44, 12:00](759 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:32, 02:48](811 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:30, 02:41](807 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:30, 02:46](812 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:31, 02:43](812 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:47, 03:02](897 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:32, 04:16](810 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:29, 02:44](815 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:29, 02:43](811 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:29, 01:41](453 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:29, 01:57](447 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:49, 01:49](1425 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:31, 02:47](812 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:29, 02:53](818 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:45, 04:35](818 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:12, 02:47] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:14, 04:26] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:48, 10:02](693 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:46, 05:20](691 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:43, 16:04](735 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [10:41, 08:09](730 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:39, 05:29](689 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:40, 07:17](546 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:30, 02:43](530 MB) +PASS -- TEST 'conus13km_control_gnu' [06:17, 03:21](860 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:47, 01:43](868 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:54, 01:54](526 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:13, 09:56] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:46, 06:07](720 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:12, 07:13] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:28, 02:38](705 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:29, 02:44](699 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:01, 07:07](876 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:56, 07:24](570 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:47, 06:06](883 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:48, 07:17](945 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:13, 07:05] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:27, 02:48](728 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:43] + +PASS -- COMPILE 's2s_gnu' [18:14, 16:21] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:19, 11:17](1503 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:12, 03:21] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:13, 16:22] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:10, 22:03](1446 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:12, 03:09] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 15:45] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:22, 03:06](694 MB) SYNOPSIS: -Starting Date/Time: 20250117 22:44:14 -Ending Date/Time: 20250118 00:36:39 -Total Time: 01h:52m:43s -Compiles Completed: 61/61 -Tests Completed: 249/249 +Starting Date/Time: 20250210 20:29:22 +Ending Date/Time: 20250210 23:07:04 +Total Time: 02h:38m:04s +Compiles Completed: 62/62 +Tests Completed: 250/250 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 589154b88c..1af3f58391 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,21 +1,20 @@ ====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: - -8b8eac654f051017e26b76099b5eb7471f0a110d +57dff5a73044ec93697082dbc42263deaff46b4c 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) - ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) - 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) - 55576eba972ad53cc6546f00d409fa27361f78bd CMEPS-interface/CMEPS (cmeps_v0.4.1-2312-g55576eb) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) + 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 951a5967c998c3694f142d3a47d746c583f30012 FV3 (remotes/origin/rrfsv1-to-ufs/dev6) + da13577f5356ba7939c52f37bb67980421e5d4eb FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev6) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + 5f2085787cfa4148bb6a3a229537e37fd9c31319 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5576-g5f208578) 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 @@ -24,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) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 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) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + 8e676278822292a97b2b69da336444ec7d04c06b WW3 (6.07.1-353-g8e676278) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,459 +37,395 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250205 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_701885 -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_2292685 - -UFS_TEST.SH OPTIONS USED: +RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE s2swa_32bit_intel [11:47, 11:46](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [08:49, 08:04] (2133260 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [16:30, 16:29](1 warnings,11 remarks) -PASS -- TEST cpld_control_gfsv17_intel [18:25, 17:39] (2012876 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [20:27, 19:16] (2316908 MB) -PASS -- TEST cpld_restart_gfsv17_intel [08:34, 07:33] (1340912 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [20:37, 19:43] (1925664 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [18:03, 18:03](1 warnings,11 remarks) -PASS -- TEST cpld_control_sfs_intel [17:17, 16:53] (1979640 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [07:10, 07:10](1523 warnings,1943 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [24:55, 24:03] (1987856 MB) - -PASS -- COMPILE s2swa_intel [13:27, 13:26](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_intel [09:40, 08:54] (2197328 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [09:12, 08:27] (2198848 MB) -PASS -- TEST cpld_restart_p8_intel [05:28, 04:39] (1961800 MB) -PASS -- TEST cpld_control_qr_p8_intel [09:26, 08:40] (2216508 MB) -PASS -- TEST cpld_restart_qr_p8_intel [05:26, 04:46] (1740448 MB) -PASS -- TEST cpld_2threads_p8_intel [11:01, 10:21] (2436572 MB) -PASS -- TEST cpld_decomp_p8_intel [09:25, 08:39] (2186576 MB) -PASS -- TEST cpld_mpi_p8_intel [08:04, 07:28] (2104668 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [09:22, 08:35] (2206008 MB) -PASS -- TEST cpld_control_c192_p8_intel [18:20, 17:01] (2993180 MB) -PASS -- TEST cpld_restart_c192_p8_intel [08:22, 06:34] (2914324 MB) -PASS -- TEST cpld_bmark_p8_intel [15:30, 10:50] (3857376 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [13:20, 07:26] (3684872 MB) -PASS -- TEST cpld_s2sa_p8_intel [07:55, 07:17] (2170020 MB) - -PASS -- COMPILE s2sw_intel [12:23, 12:22](1 warnings,11 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [08:20, 07:43] (2025836 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [06:39, 05:57] (2104492 MB) - -PASS -- COMPILE s2swa_debug_intel [07:09, 07:09](1413 warnings,1173 remarks) -PASS -- TEST cpld_debug_p8_intel [14:52, 14:07] (2233528 MB) - -PASS -- COMPILE s2sw_debug_intel [07:05, 07:05](1413 warnings,1173 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [06:59, 06:25] (2041312 MB) - -PASS -- COMPILE s2s_aoflux_intel [11:36, 11:36],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [04:46, 04:09] (2066960 MB) - -PASS -- COMPILE s2s_intel [09:54, 09:53](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [06:20, 05:55] (3036308 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:20, 01:52] (3029448 MB) -PASS -- TEST cpld_restart_c48_intel [01:23, 01:06] (2481068 MB) - -PASS -- COMPILE s2swa_faster_intel [11:59, 11:59](1 warnings,11 remarks) -PASS -- TEST cpld_control_p8_faster_intel [09:17, 08:30] (2206656 MB) - -PASS -- COMPILE s2sw_pdlib_intel [16:10, 16:09](1 warnings,11 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [15:52, 15:09] (2069556 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [08:09, 07:19] (1381264 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [24:38, 23:56] (1986572 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [04:26, 04:25](1523 warnings,1943 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [25:13, 24:30] (2045932 MB) - -PASS -- COMPILE atm_dyn32_intel [09:51, 09:51](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:10, 02:59] (703164 MB) -PASS -- TEST control_CubedSphereGrid_intel [02:35, 02:13] (1609636 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [02:38, 02:12] (1615320 MB) -PASS -- TEST control_latlon_intel [02:29, 02:09] (1607140 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:35, 02:08] (1596156 MB) -PASS -- TEST control_c48_intel [06:50, 06:28] (1707596 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:05, 05:54] (832844 MB) -PASS -- TEST control_c48_lnd_iau_intel [06:45, 06:28] (1707964 MB) -PASS -- TEST control_c192_intel [06:53, 06:20] (1769912 MB) -PASS -- TEST control_c384_intel [08:26, 07:24] (2023560 MB) -PASS -- TEST control_c384gdas_intel [10:45, 09:17] (1522528 MB) -PASS -- TEST control_stochy_intel [01:41, 01:30] (659640 MB) -PASS -- TEST control_stochy_restart_intel [01:11, 00:53] (537536 MB) -PASS -- TEST control_lndp_intel [01:29, 01:21] (675008 MB) -PASS -- TEST control_iovr4_intel [02:25, 02:13] (656740 MB) -PASS -- TEST control_iovr5_intel [02:24, 02:10] (660244 MB) -PASS -- TEST control_p8_intel [04:10, 03:31] (1895104 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:29, 02:48] (1893876 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:30, 02:47] (1896792 MB) -PASS -- TEST control_restart_p8_intel [02:08, 01:35] (1157192 MB) -PASS -- TEST control_noqr_p8_intel [03:15, 02:39] (1888108 MB) -PASS -- TEST control_restart_noqr_p8_intel [02:08, 01:32] (1216328 MB) -PASS -- TEST control_decomp_p8_intel [03:11, 02:38] (1871780 MB) -PASS -- TEST control_2threads_p8_intel [04:08, 03:30] (1951788 MB) -PASS -- TEST control_p8_lndp_intel [04:49, 04:25] (1900004 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:25, 03:41] (1969804 MB) -PASS -- TEST control_p8_mynn_intel [03:28, 02:48] (1903672 MB) -PASS -- TEST merra2_thompson_intel [03:43, 03:02] (1894472 MB) -PASS -- TEST regional_control_intel [05:01, 04:42] (1231832 MB) -PASS -- TEST regional_restart_intel [02:59, 02:40] (1186672 MB) -PASS -- TEST regional_decomp_intel [05:10, 04:56] (1214348 MB) -PASS -- TEST regional_2threads_intel [04:33, 04:15] (1119380 MB) -PASS -- TEST regional_noquilt_intel [04:54, 04:36] (1552680 MB) -PASS -- TEST regional_netcdf_parallel_intel [04:58, 04:36] (1225664 MB) -PASS -- TEST regional_2dwrtdecomp_intel [05:02, 04:43] (1227644 MB) -PASS -- TEST regional_wofs_intel [06:17, 05:59] (2084000 MB) - -PASS -- COMPILE rrfs_intel [08:56, 08:55](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:19, 06:39] (1219664 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:10, 03:31] (1375148 MB) -PASS -- TEST rap_decomp_intel [07:39, 07:01] (1146044 MB) -PASS -- TEST rap_2threads_intel [09:40, 09:00] (1226600 MB) -PASS -- TEST rap_restart_intel [04:25, 03:42] (1154492 MB) -PASS -- TEST rap_sfcdiff_intel [07:25, 06:46] (1212436 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [08:01, 07:21] (1155540 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:46, 05:12] (1191144 MB) -PASS -- TEST hrrr_control_intel [04:17, 03:37] (1084928 MB) -PASS -- TEST hrrr_control_decomp_intel [04:21, 03:40] (1039388 MB) -PASS -- TEST hrrr_control_2threads_intel [05:24, 04:45] (1151420 MB) -PASS -- TEST hrrr_control_restart_intel [02:30, 02:11] (1036356 MB) -PASS -- TEST rrfs_v1beta_intel [07:29, 06:43] (1197596 MB) -PASS -- TEST rrfs_v1nssl_intel [08:38, 08:24] (2004964 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [08:45, 08:20] (2158236 MB) - -PASS -- COMPILE csawmg_intel [08:46, 08:45] -PASS -- TEST control_csawmg_intel [06:10, 05:44] (1043464 MB) -PASS -- TEST control_ras_intel [03:11, 03:00] (812692 MB) - -PASS -- COMPILE wam_intel [08:40, 08:40],1 remarks) -PASS -- TEST control_wam_intel [10:16, 09:51] (1666496 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [08:48, 08:48],1 remarks) -PASS -- TEST control_p8_faster_intel [03:11, 02:29] (1894656 MB) -PASS -- TEST regional_control_faster_intel [04:43, 04:24] (1223192 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:38, 06:37](882 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:22, 02:03] (1635036 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:25, 02:03] (1636540 MB) -PASS -- TEST control_stochy_debug_intel [03:31, 03:19] (839028 MB) -PASS -- TEST control_lndp_debug_intel [04:36, 04:24] (830444 MB) -PASS -- TEST control_csawmg_debug_intel [04:52, 04:34] (1154916 MB) -PASS -- TEST control_ras_debug_intel [02:32, 02:25] (843024 MB) -PASS -- TEST control_diag_debug_intel [04:43, 04:15] (1685400 MB) -PASS -- TEST control_debug_p8_intel [03:30, 03:10] (1922308 MB) -PASS -- TEST regional_debug_intel [15:23, 15:01] (1153820 MB) -PASS -- TEST rap_control_debug_intel [05:24, 05:17] (1216580 MB) -PASS -- TEST hrrr_control_debug_intel [04:24, 04:11] (1217016 MB) -PASS -- TEST hrrr_gf_debug_intel [06:04, 05:52] (1222900 MB) -PASS -- TEST hrrr_c3_debug_intel [04:19, 04:09] (1231152 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [08:08, 07:59] (1232256 MB) -PASS -- TEST rap_diag_debug_intel [04:41, 04:26] (1319112 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:33, 04:19] (1214608 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [08:14, 08:05] (1226452 MB) -PASS -- TEST rap_lndp_debug_intel [04:20, 04:11] (1221008 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:27, 04:19] (1216804 MB) -PASS -- TEST rap_noah_debug_intel [05:29, 05:21] (1215280 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:21, 04:13] (1231200 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [06:57, 06:44] (1231328 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:22, 04:11] (1224216 MB) -PASS -- TEST rap_clm_lake_debug_intel [04:29, 04:15] (1223396 MB) -PASS -- TEST rap_flake_debug_intel [08:14, 08:02] (1217036 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [07:41, 07:04] (1235196 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [03:52, 03:52] -PASS -- TEST control_csawmg_debug_gnu [02:58, 02:39] (1044972 MB) - -PASS -- COMPILE wam_debug_intel [03:45, 03:45](837 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [08:30, 08:30](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:11, 03:34] (1242220 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [06:20, 05:38] (1160316 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [03:46, 02:58] (1028848 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [08:37, 08:03] (1131412 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:54, 04:04] (1075256 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:54, 03:07] (997160 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [05:05, 04:14] (1073940 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [01:55, 01:44] (937140 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [08:06, 08:05](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:06, 01:39] (1298444 MB) -PASS -- TEST conus13km_2threads_intel [01:22, 01:00] (1190596 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:49, 01:26] (1162444 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [08:15, 08:14](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:16, 03:48] (1097180 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:51, 03:50](785 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:28, 05:19] (1102000 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:11, 04:00] (1097908 MB) -PASS -- TEST conus13km_debug_intel [12:08, 11:43] (1350712 MB) -PASS -- TEST conus13km_debug_qr_intel [23:27, 23:06] (1005708 MB) -PASS -- TEST conus13km_debug_2threads_intel [13:35, 13:12] (1233176 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [11:55, 11:29] (1408104 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:49, 03:49](785 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:42, 04:27] (1159160 MB) - -PASS -- COMPILE hafsw_intel [09:45, 09:44](1 warnings,10 remarks) -PASS -- TEST hafs_regional_atm_intel [07:39, 06:01] (857408 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:14, 05:56] (1265168 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [09:03, 07:42] (919984 MB) -PASS -- TEST hafs_regional_atm_wav_intel [15:25, 14:26] (972228 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [19:23, 18:10] (985096 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [08:06, 07:24] (592420 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:16, 09:13] (608336 MB) -PASS -- TEST hafs_global_1nest_atm_intel [04:11, 03:40] (438200 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:23, 09:42] (542952 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:28, 04:55] (602072 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:20, 04:44] (601608 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:54, 05:11] (662888 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [02:09, 01:51] (461440 MB) - -PASS -- COMPILE hafsw_debug_intel [04:02, 04:02](1465 warnings,1445 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:48, 12:05] (638260 MB) - -PASS -- COMPILE hafsw_faster_intel [10:43, 10:41],9 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [18:50, 18:03] (761904 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [20:02, 19:17] (832740 MB) - -PASS -- COMPILE hafs_mom6w_intel [11:05, 11:05],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [13:42, 12:12] (816432 MB) - -PASS -- COMPILE hafs_all_intel [10:18, 10:17],9 remarks) -PASS -- TEST hafs_regional_docn_intel [06:33, 05:36] (935720 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [06:35, 05:40] (912924 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [17:24, 16:48] (1344008 MB) - -PASS -- COMPILE datm_cdeps_intel [06:12, 06:11],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [03:10, 03:03] (1138004 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:26, 01:19] (1103020 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:15, 02:08] (1025836 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:16, 02:10] (1020148 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:21, 02:13] (1023116 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:21, 02:12] (1155520 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:05, 02:59] (1129304 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:11, 02:06] (1021044 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:37, 04:58] (1165736 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:31, 04:56] (1166108 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:15, 02:12] (1152100 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [03:06, 03:01] (2411224 MB) -PASS -- TEST datm_cdeps_gfs_intel [03:09, 03:04] (2452036 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:58, 03:57](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:18, 05:12] (1076152 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [06:09, 06:08],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:14, 02:08] (1169680 MB) - -PASS -- COMPILE datm_cdeps_land_intel [01:10, 01:10],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:18, 00:58] (334144 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:07, 00:54] (562940 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:47, 00:33] (570396 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [09:02, 09:01],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [04:41, 04:04] (2019500 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [09:05, 09:04](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [04:55, 04:20] (2023912 MB) - -PASS -- COMPILE atml_intel [09:30, 09:29](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [06:32, 05:43] (1904216 MB) -PASS -- TEST control_p8_atmlnd_intel [06:56, 06:06] (1897000 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [04:49, 04:22] (1129864 MB) - -PASS -- COMPILE atml_debug_intel [04:56, 04:55](880 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [10:49, 10:01] (1916028 MB) - -PASS -- COMPILE atmw_intel [10:07, 10:07],9 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:29, 01:50] (1925680 MB) - -PASS -- COMPILE atmaero_intel [08:46, 08:45],1 remarks) -PASS -- TEST atmaero_control_p8_intel [05:24, 04:45] (2014120 MB) -PASS -- TEST atmaero_control_p8_rad_intel [06:06, 05:24] (1788612 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:59, 05:32] (1795572 MB) - -PASS -- COMPILE atmaq_debug_intel [03:30, 03:30](882 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [18:54, 17:43] (4567136 MB) - -PASS -- COMPILE atm_fbh_intel [08:08, 08:08](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [10:08, 09:52] (1109392 MB) - -PASS -- COMPILE datm_cdeps_intelllvm [10:01, 10:00] -PASS -- TEST datm_cdeps_control_cfsr_intelllvm [02:24, 02:17] (1166540 MB) - -PASS -- COMPILE datm_cdeps_debug_intelllvm [01:43, 01:43](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:32, 06:26] (1073440 MB) - -PASS -- COMPILE atm_gnu [04:13, 04:13] -PASS -- TEST control_c48_gnu [08:08, 07:44] (1525168 MB) -PASS -- TEST control_stochy_gnu [02:38, 02:27] (721608 MB) -PASS -- TEST control_ras_gnu [04:04, 03:55] (722520 MB) -PASS -- TEST control_p8_gnu [05:21, 04:43] (1702648 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:13, 03:42] (1721688 MB) -PASS -- TEST control_flake_gnu [05:04, 04:51] (806652 MB) - -PASS -- COMPILE rrfs_gnu [04:19, 04:19] -PASS -- TEST rap_control_gnu [09:03, 08:24] (1074344 MB) -PASS -- TEST rap_decomp_gnu [09:08, 08:27] (1072412 MB) -PASS -- TEST rap_2threads_gnu [11:45, 11:07] (975632 MB) -PASS -- TEST rap_restart_gnu [04:40, 04:10] (878296 MB) -PASS -- TEST rap_sfcdiff_gnu [08:39, 08:03] (1072592 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [08:58, 08:19] (1071788 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [06:51, 06:10] (877492 MB) -PASS -- TEST hrrr_control_gnu [04:56, 04:14] (1060816 MB) -PASS -- TEST hrrr_control_noqr_gnu [04:35, 04:08] (1128696 MB) -PASS -- TEST hrrr_control_decomp_gnu [04:59, 04:18] (1060344 MB) -PASS -- TEST hrrr_control_restart_gnu [02:36, 02:15] (874252 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:20, 02:08] (924780 MB) -PASS -- TEST rrfs_v1beta_gnu [08:51, 08:11] (1070408 MB) - -PASS -- COMPILE csawmg_gnu [04:25, 04:24] -PASS -- TEST control_csawmg_gnu [07:38, 07:21] (1048164 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [06:35, 06:34] -PASS -- TEST control_diag_debug_gnu [01:47, 01:29] (1617036 MB) -PASS -- TEST regional_debug_gnu [07:58, 07:39] (1105156 MB) -PASS -- TEST rap_control_debug_gnu [02:12, 02:05] (1088492 MB) -PASS -- TEST hrrr_control_debug_gnu [02:16, 02:09] (1078892 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:13, 02:04] (1084884 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:08, 01:59] (1085872 MB) -PASS -- TEST rap_diag_debug_gnu [02:21, 02:05] (1258884 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:23, 03:14] (1086136 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:09, 02:02] (1087604 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:17, 02:06] (1080612 MB) -PASS -- TEST control_ras_debug_gnu [01:28, 01:17] (717792 MB) -PASS -- TEST control_stochy_debug_gnu [02:38, 02:27] (721368 MB) -PASS -- TEST control_debug_p8_gnu [01:37, 01:19] (1715188 MB) -PASS -- TEST rap_flake_debug_gnu [02:16, 02:07] (1088560 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:13, 02:07] (1086892 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:19, 03:42] (1093772 MB) - -PASS -- COMPILE wam_debug_gnu [02:55, 02:54] -PASS -- TEST control_wam_debug_gnu [06:24, 06:03] (1551288 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:22, 04:22] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:20, 07:43] (952768 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:49, 04:01] (941396 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:41, 07:06] (916688 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [07:37, 06:51] (875460 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:51, 04:06] (940420 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:29, 05:44] (856764 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:23, 02:04] (851412 MB) -PASS -- TEST conus13km_control_gnu [03:02, 02:39] (1257592 MB) -PASS -- TEST conus13km_2threads_gnu [07:17, 06:56] (1103776 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [02:02, 01:34] (920524 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [08:57, 08:57] -PASS -- TEST rap_control_dyn64_phy32_gnu [04:50, 04:31] (979284 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:16, 07:16] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:05, 01:57] (973328 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:15, 02:04] (963236 MB) -PASS -- TEST conus13km_debug_gnu [05:44, 05:24] (1275776 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:05, 05:38] (952660 MB) -PASS -- TEST conus13km_debug_2threads_gnu [19:05, 18:44] (1125672 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [05:51, 05:30] (1344400 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:16, 07:16] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:29, 02:20] (999084 MB) - -PASS -- COMPILE s2swa_gnu [16:49, 16:49] -PASS -- COMPILE s2s_gnu [16:08, 16:08] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [09:07, 08:16] (3066740 MB) - -PASS -- COMPILE s2swa_debug_gnu [03:12, 03:12] -PASS -- COMPILE s2sw_pdlib_gnu [15:32, 15:31] -PASS -- TEST cpld_control_pdlib_p8_gnu [28:33, 27:49] (3014412 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:18, 03:18] -PASS -- TEST cpld_debug_pdlib_p8_gnu [14:52, 14:09] (2917572 MB) - -PASS -- COMPILE datm_cdeps_gnu [14:34, 14:33] -PASS -- TEST datm_cdeps_control_cfsr_gnu [02:53, 02:46] (767920 MB) +* (-e) - USE ECFLOW + +PASS -- COMPILE s2swa_32bit_intel [18:11, 12:15](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [38:12, 09:33] (2167456 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [22:11, 19:51](1 warnings,11 remarks) +PASS -- TEST cpld_control_gfsv17_intel [47:17, 17:39] (2028116 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [23:29, 19:45] (2330616 MB) +PASS -- TEST cpld_restart_gfsv17_intel [10:16, 06:53] (1348792 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [49:01, 19:37] (1923672 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [19:11, 17:34](1 warnings,11 remarks) +PASS -- TEST cpld_control_sfs_intel [49:47, 18:25] (1995528 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [08:10, 05:51](1523 warnings,1943 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [33:15, 23:26] (1999820 MB) + +PASS -- COMPILE s2swa_intel [18:11, 12:14](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_intel [43:21, 09:35] (2252988 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [42:23, 09:23] (2263672 MB) +PASS -- TEST cpld_restart_p8_intel [08:08, 05:28] (1986432 MB) +PASS -- TEST cpld_control_qr_p8_intel [38:01, 09:28] (2283784 MB) +PASS -- TEST cpld_restart_qr_p8_intel [13:13, 05:44] (1815528 MB) +PASS -- TEST cpld_2threads_p8_intel [43:06, 10:08] (2427408 MB) +PASS -- TEST cpld_decomp_p8_intel [38:00, 09:33] (2258820 MB) +PASS -- TEST cpld_mpi_p8_intel [36:06, 08:15] (2143308 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [37:11, 09:22] (2267444 MB) +PASS -- TEST cpld_control_c192_p8_intel [45:48, 17:09] (2980908 MB) +PASS -- TEST cpld_restart_c192_p8_intel [13:12, 07:09] (2977748 MB) +PASS -- TEST cpld_bmark_p8_intel [19:59, 11:58] (3890536 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [37:06, 07:46] (3775144 MB) + +PASS -- COMPILE s2swal_intel [14:10, 12:01](1 warnings,12 remarks) +PASS -- TEST cpld_control_p8_lnd_intel [18:10, 09:38] (2229544 MB) +PASS -- TEST cpld_restart_p8_lnd_intel [36:22, 05:22] (1959772 MB) +PASS -- TEST cpld_s2sa_p8_intel [15:59, 07:54] (2232756 MB) + +PASS -- COMPILE s2sw_intel [13:10, 11:16](1 warnings,11 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [13:54, 08:42] (2040924 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [15:03, 06:37] (2175080 MB) + +PASS -- COMPILE s2swa_debug_intel [11:10, 06:47](1413 warnings,1173 remarks) +PASS -- TEST cpld_debug_p8_intel [20:04, 12:51] (2293068 MB) + +PASS -- COMPILE s2sw_debug_intel [11:11, 05:46](1413 warnings,1173 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [12:52, 06:12] (2075900 MB) + +PASS -- COMPILE s2s_aoflux_intel [15:10, 09:42],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [14:57, 04:44] (2141124 MB) + +PASS -- COMPILE s2s_intel [14:11, 11:16](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [35:41, 06:46] (3035904 MB) +PASS -- TEST cpld_warmstart_c48_intel [31:41, 03:01] (3023920 MB) +PASS -- TEST cpld_restart_c48_intel [11:45, 02:34] (2479892 MB) + +PASS -- COMPILE s2swa_faster_intel [18:10, 13:22](1 warnings,11 remarks) +PASS -- TEST cpld_control_p8_faster_intel [35:13, 09:05] (2258720 MB) + +PASS -- COMPILE s2sw_pdlib_intel [23:10, 17:50](1 warnings,11 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [38:03, 15:25] (2102760 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [12:09, 08:37] (1427572 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [18:56, 16:29] (2003968 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [10:10, 07:01](1523 warnings,1943 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [52:52, 25:07] (2074220 MB) + +PASS -- COMPILE atm_dyn32_intel [12:10, 09:48](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [27:21, 03:02] (723812 MB) +PASS -- TEST control_CubedSphereGrid_intel [26:36, 02:15] (1617524 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [31:44, 02:18] (1639272 MB) +PASS -- TEST control_latlon_intel [27:35, 02:15] (1625568 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [31:43, 02:16] (1628816 MB) +PASS -- TEST control_c48_intel [31:39, 06:24] (1705328 MB) +PASS -- TEST control_c48.v2.sfc_intel [30:26, 05:56] (833768 MB) +PASS -- TEST control_c48_lnd_iau_intel [35:35, 06:32] (1700604 MB) +PASS -- TEST control_c192_intel [34:41, 06:29] (1819964 MB) +PASS -- TEST control_c384_intel [33:28, 07:24] (2012216 MB) +PASS -- TEST control_c384gdas_intel [40:59, 07:36] (1522908 MB) +PASS -- TEST control_stochy_intel [11:17, 01:32] (682900 MB) +PASS -- TEST control_stochy_restart_intel [02:29, 00:52] (545488 MB) +PASS -- TEST control_lndp_intel [11:19, 01:27] (685416 MB) +PASS -- TEST control_iovr4_intel [11:19, 02:11] (684240 MB) +PASS -- TEST control_iovr5_intel [11:20, 02:11] (684920 MB) +PASS -- TEST control_p8_intel [11:42, 03:30] (1920644 MB) +PASS -- TEST control_p8.v2.sfc_intel [11:53, 04:14] (1912276 MB) +PASS -- TEST control_p8_ugwpv1_intel [10:50, 03:15] (1919800 MB) +PASS -- TEST control_restart_p8_intel [05:49, 02:19] (1173148 MB) +PASS -- TEST control_noqr_p8_intel [10:47, 03:35] (1904396 MB) +PASS -- TEST control_restart_noqr_p8_intel [05:44, 02:12] (1222876 MB) +PASS -- TEST control_decomp_p8_intel [08:48, 03:33] (1911632 MB) +PASS -- TEST control_2threads_p8_intel [09:40, 04:04] (1983236 MB) +PASS -- TEST control_p8_lndp_intel [10:29, 05:07] (1902808 MB) +PASS -- TEST control_p8_rrtmgp_intel [10:52, 04:37] (1982344 MB) +PASS -- TEST control_p8_mynn_intel [06:51, 03:22] (1928144 MB) +PASS -- TEST merra2_thompson_intel [06:53, 03:31] (1923136 MB) +PASS -- TEST regional_control_intel [08:27, 05:28] (1233664 MB) +PASS -- TEST regional_restart_intel [04:31, 02:34] (1220472 MB) +PASS -- TEST regional_decomp_intel [07:27, 05:22] (1224792 MB) +PASS -- TEST regional_2threads_intel [05:28, 03:54] (1130576 MB) +PASS -- TEST regional_noquilt_intel [09:32, 05:09] (1551020 MB) +PASS -- TEST regional_netcdf_parallel_intel [09:29, 05:34] (1234040 MB) +PASS -- TEST regional_2dwrtdecomp_intel [09:25, 05:35] (1229368 MB) +PASS -- TEST regional_wofs_intel [10:29, 06:16] (2070004 MB) + +PASS -- COMPILE rrfs_intel [15:10, 09:28](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [10:50, 06:56] (1224588 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:44, 03:36] (1460396 MB) +PASS -- TEST rap_decomp_intel [10:47, 07:20] (1150300 MB) +PASS -- TEST rap_2threads_intel [11:32, 08:09] (1222796 MB) +PASS -- TEST rap_restart_intel [06:09, 03:34] (1169036 MB) +PASS -- TEST rap_sfcdiff_intel [09:51, 06:36] (1213544 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [10:39, 07:17] (1145304 MB) +PASS -- TEST rap_sfcdiff_restart_intel [06:55, 05:05] (1223376 MB) +PASS -- TEST hrrr_control_intel [06:42, 03:28] (1106068 MB) +PASS -- TEST hrrr_control_decomp_intel [06:36, 03:40] (1059948 MB) +PASS -- TEST hrrr_control_2threads_intel [06:34, 04:08] (1146964 MB) +PASS -- TEST hrrr_control_restart_intel [04:28, 01:59] (1050740 MB) +PASS -- TEST rrfs_v1beta_intel [08:55, 06:32] (1216304 MB) +PASS -- TEST rrfs_v1nssl_intel [10:21, 08:32] (2008008 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [10:20, 08:09] (2175692 MB) + +PASS -- COMPILE csawmg_intel [16:10, 13:45] +PASS -- TEST control_csawmg_intel [07:24, 05:42] (1078792 MB) +PASS -- TEST control_ras_intel [05:17, 03:19] (850844 MB) + +PASS -- COMPILE wam_intel [12:10, 09:08],1 remarks) +PASS -- TEST control_wam_intel [12:34, 09:58] (1685476 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [11:10, 09:44],1 remarks) +PASS -- TEST control_p8_faster_intel [04:55, 02:21] (1926324 MB) +PASS -- TEST regional_control_faster_intel [06:29, 04:16] (1241680 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [11:10, 07:26](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [03:33, 01:58] (1644268 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:31, 01:59] (1650216 MB) +PASS -- TEST control_stochy_debug_intel [04:18, 02:33] (866124 MB) +PASS -- TEST control_lndp_debug_intel [04:17, 02:18] (858788 MB) +PASS -- TEST control_csawmg_debug_intel [06:27, 04:16] (1165412 MB) +PASS -- TEST control_ras_debug_intel [04:17, 02:19] (861812 MB) +PASS -- TEST control_diag_debug_intel [04:33, 02:17] (1719376 MB) +PASS -- TEST control_debug_p8_intel [05:31, 03:14] (1942784 MB) +PASS -- TEST regional_debug_intel [18:26, 15:41] (1171460 MB) +PASS -- TEST rap_control_debug_intel [06:20, 04:11] (1253404 MB) +PASS -- TEST hrrr_control_debug_intel [06:25, 04:06] (1245716 MB) +PASS -- TEST hrrr_gf_debug_intel [06:19, 04:05] (1255624 MB) +PASS -- TEST hrrr_c3_debug_intel [07:20, 04:12] (1247968 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [07:19, 04:13] (1258764 MB) +PASS -- TEST rap_diag_debug_intel [07:25, 04:23] (1344588 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [06:17, 04:13] (1247724 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [06:17, 04:17] (1250116 MB) +PASS -- TEST rap_lndp_debug_intel [07:22, 05:31] (1259984 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [06:18, 04:18] (1249860 MB) +PASS -- TEST rap_noah_debug_intel [06:17, 04:05] (1249068 MB) +PASS -- TEST rap_sfcdiff_debug_intel [06:17, 04:07] (1250920 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:17, 06:49] (1244960 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:17, 04:01] (1245108 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:20, 04:09] (1259416 MB) +PASS -- TEST rap_flake_debug_intel [05:17, 04:08] (1249316 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [08:50, 07:06] (1252708 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [08:10, 04:08] +PASS -- TEST control_csawmg_debug_gnu [06:34, 03:31] (1045048 MB) + +PASS -- COMPILE wam_debug_intel [07:10, 04:29](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [13:11, 08:53](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [06:46, 03:30] (1328844 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [07:48, 05:33] (1158052 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [07:03, 03:01] (1022464 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [09:38, 07:04] (1136032 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [05:38, 03:44] (1070988 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [05:38, 03:32] (1007472 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [16:02, 04:17] (1109620 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [13:44, 01:41] (966348 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [10:11, 08:52](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [03:52, 01:42] (1331244 MB) +PASS -- TEST conus13km_2threads_intel [11:33, 00:59] (1210836 MB) +PASS -- TEST conus13km_restart_mismatch_intel [12:30, 01:06] (1190172 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [15:11, 08:57](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [05:36, 03:47] (1113288 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [10:11, 04:19](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [06:23, 04:52] (1132328 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [06:20, 05:06] (1122860 MB) +PASS -- TEST conus13km_debug_intel [15:37, 13:24] (1371604 MB) +PASS -- TEST conus13km_debug_qr_intel [15:31, 13:48] (1035076 MB) +PASS -- TEST conus13km_debug_2threads_intel [14:32, 12:40] (1265168 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [14:32, 12:46] (1438364 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [10:11, 04:10](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [14:23, 04:32] (1219728 MB) + +PASS -- COMPILE hafsw_intel [16:11, 10:27](1 warnings,10 remarks) +PASS -- TEST hafs_regional_atm_intel [14:09, 05:42] (1030748 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [13:23, 05:17] (1321364 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [17:16, 06:36] (1100884 MB) +PASS -- TEST hafs_regional_atm_wav_intel [26:05, 15:23] (1108504 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [28:14, 17:45] (1160464 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [16:57, 05:38] (612432 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [19:42, 07:30] (613784 MB) +PASS -- TEST hafs_global_1nest_atm_intel [13:46, 02:50] (438140 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [22:02, 08:47] (500304 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [14:48, 04:26] (618936 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [14:47, 04:00] (619484 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [15:49, 05:09] (666232 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [11:28, 01:12] (457336 MB) + +PASS -- COMPILE hafsw_debug_intel [10:11, 04:28](1465 warnings,1445 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [21:47, 11:38] (654808 MB) + +PASS -- COMPILE hafsw_faster_intel [14:11, 11:04],9 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [28:58, 18:43] (764988 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [27:55, 17:46] (842572 MB) + +PASS -- COMPILE hafs_mom6w_intel [12:11, 10:33],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [22:29, 12:26] (819772 MB) + +PASS -- COMPILE hafs_all_intel [12:11, 09:57],9 remarks) +PASS -- TEST hafs_regional_docn_intel [15:08, 06:07] (1103776 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [13:07, 06:02] (1084256 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [22:50, 16:39] (1351384 MB) + +PASS -- COMPILE datm_cdeps_intel [07:11, 05:59],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [04:17, 02:16] (1159600 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [05:16, 01:26] (1096320 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [05:15, 02:09] (1025456 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [04:18, 02:10] (1019360 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [04:19, 02:11] (1021072 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [04:15, 02:15] (1122956 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [04:15, 02:16] (1146356 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [04:18, 02:06] (1021760 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:55, 05:30] (1161336 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:53, 04:59] (1157600 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [04:14, 02:14] (1154492 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [05:18, 03:05] (2458420 MB) +PASS -- TEST datm_cdeps_gfs_intel [05:18, 03:08] (2406044 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [05:11, 04:00](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [07:15, 05:16] (1071492 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [12:11, 06:26],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [07:17, 02:15] (1154476 MB) + +PASS -- COMPILE datm_cdeps_land_intel [06:11, 00:49],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [05:28, 01:52] (342280 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [05:21, 01:44] (561540 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [02:23, 00:37] (565640 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [15:11, 09:40],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [08:51, 05:01] (2050428 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [16:10, 09:27](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [09:52, 06:13] (2055156 MB) + +PASS -- COMPILE atml_intel [15:10, 09:41](9 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_intel [09:52, 06:53] (1905740 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [08:35, 04:51] (1151628 MB) + +PASS -- COMPILE atml_debug_intel [10:10, 05:55](887 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [08:50, 05:54] (1939368 MB) + +PASS -- COMPILE atmw_intel [14:10, 09:39],9 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [06:52, 04:07] (1947848 MB) + +PASS -- COMPILE atmaero_intel [15:10, 10:27],1 remarks) +PASS -- TEST atmaero_control_p8_intel [08:46, 05:08] (2027340 MB) +PASS -- TEST atmaero_control_p8_rad_intel [07:45, 04:38] (1795460 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [07:41, 04:48] (1817256 MB) + +PASS -- COMPILE atmaq_debug_intel [09:10, 04:38](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [20:37, 17:26] (4528012 MB) + +PASS -- COMPILE atm_fbh_intel [13:10, 09:01](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [12:35, 10:03] (1115604 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [17:10, 13:30] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [04:16, 02:18] (1162696 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [05:10, 01:43](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [08:15, 06:22] (1061960 MB) + +PASS -- COMPILE atm_gnu [10:10, 04:35] +PASS -- TEST control_c48_gnu [09:37, 07:41] (1526184 MB) +PASS -- TEST control_stochy_gnu [04:21, 02:21] (724468 MB) +PASS -- TEST control_ras_gnu [05:22, 03:55] (730228 MB) +PASS -- TEST control_p8_gnu [05:51, 03:34] (1725792 MB) +PASS -- TEST control_p8_ugwpv1_gnu [05:38, 03:52] (1723108 MB) +PASS -- TEST control_flake_gnu [06:19, 04:46] (812492 MB) + +PASS -- COMPILE rrfs_gnu [09:10, 04:27] +PASS -- TEST rap_control_gnu [10:35, 08:50] (1076692 MB) +PASS -- TEST rap_decomp_gnu [10:51, 08:19] (1073944 MB) +PASS -- TEST rap_2threads_gnu [09:37, 07:37] (1004256 MB) +PASS -- TEST rap_restart_gnu [08:59, 04:20] (888516 MB) +PASS -- TEST rap_sfcdiff_gnu [10:42, 08:14] (1074628 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [10:38, 08:18] (1073308 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [10:06, 06:04] (873160 MB) +PASS -- TEST hrrr_control_gnu [06:57, 04:11] (1066224 MB) +PASS -- TEST hrrr_control_noqr_gnu [06:51, 04:22] (1128308 MB) +PASS -- TEST hrrr_control_2threads_gnu [06:08, 03:48] (1029020 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:38, 04:25] (1066360 MB) +PASS -- TEST hrrr_control_restart_gnu [04:37, 02:15] (875800 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [04:30, 02:13] (928460 MB) +PASS -- TEST rrfs_v1beta_gnu [10:52, 08:16] (1071144 MB) + +PASS -- COMPILE csawmg_gnu [08:11, 04:03] +PASS -- TEST control_csawmg_gnu [08:27, 07:01] (1054652 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [09:11, 06:19] +PASS -- TEST control_diag_debug_gnu [03:29, 01:14] (1623912 MB) +PASS -- TEST regional_debug_gnu [11:26, 08:27] (1131972 MB) +PASS -- TEST rap_control_debug_gnu [04:23, 02:09] (1103656 MB) +PASS -- TEST hrrr_control_debug_gnu [04:20, 01:59] (1086620 MB) +PASS -- TEST hrrr_gf_debug_gnu [04:17, 02:05] (1090936 MB) +PASS -- TEST hrrr_c3_debug_gnu [05:17, 02:08] (1095984 MB) +PASS -- TEST rap_diag_debug_gnu [05:30, 02:31] (1264300 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [06:17, 03:11] (1092664 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [05:18, 02:19] (1094736 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [05:17, 02:15] (1089800 MB) +PASS -- TEST control_ras_debug_gnu [05:16, 01:44] (733740 MB) +PASS -- TEST control_stochy_debug_gnu [04:16, 01:43] (721476 MB) +PASS -- TEST control_debug_p8_gnu [04:29, 02:55] (1721180 MB) +PASS -- TEST rap_flake_debug_gnu [04:18, 02:34] (1094192 MB) +PASS -- TEST rap_clm_lake_debug_gnu [04:35, 02:20] (1101624 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [06:49, 04:01] (1098608 MB) + +PASS -- COMPILE wam_debug_gnu [08:11, 04:23] +PASS -- TEST control_wam_debug_gnu [07:37, 05:33] (1557316 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [09:11, 05:42] +PASS -- TEST rap_control_dyn32_phy32_gnu [09:32, 07:56] (976976 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [06:37, 04:02] (946292 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [08:44, 06:56] (904392 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [05:56, 03:31] (868728 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [06:36, 04:01] (945616 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [08:49, 05:47] (861292 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [03:20, 02:04] (857536 MB) +PASS -- TEST conus13km_control_gnu [06:42, 02:35] (1272476 MB) +PASS -- TEST conus13km_2threads_gnu [03:33, 01:12] (1107404 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [03:32, 01:31] (944468 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [14:10, 11:19] +PASS -- TEST rap_control_dyn64_phy32_gnu [06:30, 04:30] (981960 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [12:10, 08:46] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [06:18, 02:12] (970540 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [06:21, 02:08] (964660 MB) +PASS -- TEST conus13km_debug_gnu [11:23, 05:55] (1297832 MB) +PASS -- TEST conus13km_debug_qr_gnu [11:07, 05:58] (987936 MB) +PASS -- TEST conus13km_debug_2threads_gnu [07:30, 03:33] (1134868 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [09:31, 05:43] (1358496 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [11:10, 09:13] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [06:19, 02:02] (1002564 MB) + +PASS -- COMPILE s2swa_gnu [23:11, 19:49] +PASS -- COMPILE s2s_gnu [25:11, 19:10] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [13:12, 08:39] (3062184 MB) + +PASS -- COMPILE s2swa_debug_gnu [11:11, 05:52] +PASS -- COMPILE s2sw_pdlib_gnu [24:10, 19:19] +PASS -- TEST cpld_control_pdlib_p8_gnu [30:52, 26:48] (3068968 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [09:11, 05:44] +PASS -- TEST cpld_debug_pdlib_p8_gnu [17:53, 13:59] (2919076 MB) + +PASS -- COMPILE datm_cdeps_gnu [20:10, 17:38] +PASS -- TEST datm_cdeps_control_cfsr_gnu [05:19, 02:18] (765516 MB) SYNOPSIS: -Starting Date/Time: 2025-01-17 19:27:11 -Ending Date/Time: 2025-01-20 17:01:55 -Total Time: 69h:34m:44s -Compiles Completed: 60/60 -Tests Completed: 247/248 +Starting Date/Time: 2025-02-10 11:13:30 +Ending Date/Time: 2025-02-10 13:34:52 +Total Time: 02h:21m:22s +Compiles Completed: 61/61 +Tests Completed: 249/249 NOTES: A file test_changes.list was generated but is empty. If you are using this log as a pull request verification, please commit test_changes.list. -Result: FAILED - -./logs/log_hercules/rt_hrrr_control_2threads_gnu.log: does not exist - -====END OF hercules REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - 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) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) - 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) - 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 --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) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) - 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) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) - 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: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2303740 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 'rrfs_gnu' [04:19, 04:18] -PASS -- TEST 'hrrr_control_gnu' [05:04, 04:20](1061 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:28, 03:45](1036 MB) - -SYNOPSIS: -Starting Date/Time: 20250120 17:53:53 -Ending Date/Time: 20250120 18:34:22 -Total Time: 00h:40m:30s -Compiles Completed: 1/1 -Tests Completed: 2/2 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - Result: SUCCESS -====END OF HERCULES REGRESSION TESTING LOG==== +====END OF hercules REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index db2b2049ae..bbb912eb9f 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d +cf8d8f0ae16e210c8f2deeee26cc24b1ddab6688 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) 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) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) + 2c902a670e89416ef49254c827e8ba45a68ce596 FV3 (heads/develop) 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + db19a6d1d7fa7ed56f62318501c4abb5fb8b1138 FV3/ccpp/physics (EP4-1119-gdb19a6d1) 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) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 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) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + 5e7dcf04d4180241df1cb2626ca08b1c81db6c51 WW3 (remotes/origin/devufs/addbinaryrestartinit) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,260 +38,262 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3427069 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20250129 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2489623 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf +* (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [45:15, 43:23] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:21, 08:21](2016 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 48:27] ( 1 warnings 1446 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:14, 24:57](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:21, 26:20](2026 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:10, 09:56](1123 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:01, 27:56](1856 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:15, 49:18] ( 1 warnings 1443 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:46, 24:16](1888 MB) - -PASS -- COMPILE 's2swa_intel' [44:14, 42:37] ( 1 warnings 1418 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:20, 10:41](2058 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:27, 10:15](2058 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:17, 05:34](1709 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:15, 10:22](2082 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:20, 05:37](1728 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:07, 09:34](2237 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:07, 10:16](2052 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:28, 08:37](1989 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:26, 10:24](2055 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:21, 09:40](2028 MB) - -PASS -- COMPILE 's2sw_intel' [43:14, 41:14] ( 1 warnings 1303 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:31, 06:28](1909 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:37, 08:18](1971 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:29] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [19:20, 16:32](2079 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:08] ( 1413 warnings 1171 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:11, 07:37](1929 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [38:13, 36:59] ( 1019 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:31, 05:28](1961 MB) - -PASS -- COMPILE 's2s_intel' [39:13, 37:36] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:49, 10:21](3008 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:47, 03:05](3002 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:50, 01:46](2458 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:20, 33:25] ( 1 warnings 1634 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:53, 10:21](2054 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:14, 46:59] ( 1 warnings 1363 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:14, 20:29](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:19, 10:04](1113 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:51, 24:13](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:00] ( 1523 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:20, 35:00](1941 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:46] ( 1 warnings 1125 remarks ) -PASS -- TEST 'control_flake_intel' [18:32, 04:33](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [19:08, 03:27](1541 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:11, 03:40](1542 MB) -PASS -- TEST 'control_latlon_intel' [19:04, 03:27](1544 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:13, 03:33](1550 MB) -PASS -- TEST 'control_c48_intel' [15:12, 11:10](1697 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:13](829 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [15:12, 11:12](1705 MB) -PASS -- TEST 'control_c192_intel' [14:21, 09:51](1683 MB) -PASS -- TEST 'control_c384_intel' [18:15, 13:38](1815 MB) -PASS -- TEST 'control_c384gdas_intel' [34:14, 13:28](1009 MB) -PASS -- TEST 'control_stochy_intel' [13:30, 02:06](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:26, 01:13](440 MB) -PASS -- TEST 'control_lndp_intel' [13:30, 02:00](603 MB) -PASS -- TEST 'control_iovr4_intel' [16:32, 03:11](590 MB) -PASS -- TEST 'control_iovr5_intel' [16:33, 03:10](602 MB) -PASS -- TEST 'control_p8_intel' [19:25, 03:59](1831 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:42, 03:59](1837 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [19:17, 03:52](1836 MB) -PASS -- TEST 'control_restart_p8_intel' [03:51, 02:04](1049 MB) -PASS -- TEST 'control_noqr_p8_intel' [19:20, 03:50](1810 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:53, 02:04](1077 MB) -PASS -- TEST 'control_decomp_p8_intel' [19:19, 04:01](1815 MB) -PASS -- TEST 'control_2threads_p8_intel' [19:19, 03:36](1900 MB) -PASS -- TEST 'control_p8_lndp_intel' [23:13, 06:38](1838 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [22:38, 05:08](1894 MB) -PASS -- TEST 'control_p8_mynn_intel' [19:22, 04:07](1851 MB) -PASS -- TEST 'merra2_thompson_intel' [20:24, 04:33](1834 MB) -PASS -- TEST 'regional_control_intel' [22:16, 07:16](1042 MB) -PASS -- TEST 'regional_restart_intel' [07:47, 03:48](1022 MB) -PASS -- TEST 'regional_decomp_intel' [21:09, 07:38](1040 MB) -PASS -- TEST 'regional_2threads_intel' [22:03, 04:17](1003 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [16:46, 07:09](1044 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:39, 07:03](1036 MB) - -PASS -- COMPILE 'rrfs_intel' [36:13, 34:41] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [12:05, 10:05](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:16, 05:33](1182 MB) -PASS -- TEST 'rap_decomp_intel' [13:04, 10:41](975 MB) -PASS -- TEST 'rap_2threads_intel' [17:58, 09:28](1059 MB) -PASS -- TEST 'rap_restart_intel' [10:10, 05:39](989 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:05, 10:03](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:04, 10:39](976 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:10, 08:07](997 MB) -PASS -- TEST 'hrrr_control_intel' [08:22, 05:15](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:22, 05:25](975 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [14:00, 04:50](1049 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:46](914 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:17, 10:04](993 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:45, 13:14](1926 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:48, 12:59](1930 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 34:53] ( 1099 remarks ) -PASS -- TEST 'control_csawmg_intel' [12:44, 08:27](963 MB) -PASS -- TEST 'control_ras_intel' [08:25, 04:21](667 MB) - -PASS -- COMPILE 'wam_intel' [37:13, 35:28] ( 1003 remarks ) -PASS -- TEST 'control_wam_intel' [17:48, 14:38](1617 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [40:14, 38:21] ( 1303 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:30, 03:56](1844 MB) -PASS -- TEST 'regional_control_faster_intel' [09:04, 06:49](1038 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:58] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:06, 02:53](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:02, 03:04](1575 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:45](773 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:28, 03:22](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [09:53, 05:29](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [05:28, 03:23](789 MB) -PASS -- TEST 'control_diag_debug_intel' [08:59, 03:32](1633 MB) -PASS -- TEST 'control_debug_p8_intel' [09:01, 03:46](1869 MB) -PASS -- TEST 'regional_debug_intel' [29:48, 22:31](1038 MB) -PASS -- TEST 'rap_control_debug_intel' [09:42, 06:10](1159 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:33, 06:10](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:34, 06:03](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:33, 06:11](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:43, 06:09](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:57, 06:33](1235 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:29, 06:24](1160 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:35, 06:17](1162 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:38, 06:49](1177 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:38, 06:49](1162 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:38, 06:32](1158 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:33, 06:42](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:30, 10:39](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:27, 07:14](1158 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:25, 07:21](1162 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:25, 06:42](1161 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:51, 11:40](1166 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:18] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [20:42, 17:03](1639 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:13, 31:35] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 05:11](1061 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:33, 08:19](902 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:44, 04:19](870 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:48, 07:49](915 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:44, 03:59](909 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:32, 04:34](855 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:40, 06:14](902 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:25, 02:19](839 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [35:13, 32:49] ( 3 warnings 1207 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:58, 02:44](1097 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:43, 01:08](1030 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:45, 01:30](1016 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:13, 32:11] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:01, 05:29](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:13, 07:01] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:36, 06:09](1038 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:37, 06:06](1038 MB) -PASS -- TEST 'conus13km_debug_intel' [20:15, 17:47](1143 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:15, 17:49](860 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:06, 10:14](1079 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:08, 17:41](1213 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 05:11] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:08](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [41:14, 40:10] ( 1 warnings 1437 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:23, 06:40](698 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:36, 06:00](1080 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:35, 08:43](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:30, 15:39](783 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:47, 19:13](806 MB) -PASS -- TEST 'gnv1_nested_intel' [09:46, 06:34](1667 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:13, 36:29] ( 1283 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:20, 08:18](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:22, 08:23](735 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:22] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:35](1076 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:10](1044 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:32](932 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:34](938 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:36](950 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:23, 03:38](1075 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:21](1070 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:32](931 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:20, 07:41](898 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:14, 07:57](857 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:38](1064 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:14](2423 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:12](2418 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:04](1016 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:28] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:34](1072 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:31] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:35, 01:07](238 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:32, 00:58](266 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:37](262 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:13, 36:41] ( 1024 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:12, 04:43](1905 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:13, 36:04] ( 1 warnings 1029 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:04, 06:10](1897 MB) - -PASS -- COMPILE 'atml_intel' [39:14, 37:26] ( 8 warnings 1174 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:06, 05:27](1849 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:04, 05:28](1851 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:43, 03:03](1067 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:10] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:09, 07:11](1879 MB) - -PASS -- COMPILE 'atmw_intel' [38:13, 36:39] ( 1279 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:56, 02:25](1845 MB) - -PASS -- COMPILE 'atmaero_intel' [37:13, 35:56] ( 1107 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:02, 05:14](1931 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [16:03, 06:10](1711 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:51, 06:19](1718 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:12, 31:25] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [21:36, 15:14](1076 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:16, 44:22] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:13, 08:24](2022 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:16, 48:41] ( 1 warnings 1446 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [33:10, 23:17](1902 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:23, 24:01](2029 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:11, 09:36](1144 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:04, 25:59](1862 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:17, 50:25] ( 1 warnings 1443 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:48, 22:24](1878 MB) + +PASS -- COMPILE 's2swa_intel' [09:16, 43:17] ( 1 warnings 1418 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:37, 10:34](2054 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:38, 10:10](2064 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:22, 05:30](1710 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:24, 10:09](2079 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:30, 05:40](1730 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:17, 09:28](2252 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:20, 10:17](2019 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:28, 08:24](2006 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:39, 10:10](2058 MB) + +PASS -- COMPILE 's2swal_intel' [15:16, 45:57] ( 1 warnings 1486 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [23:21, 10:47](2026 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:32, 05:53](1712 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:11, 09:32](2040 MB) + +PASS -- COMPILE 's2sw_intel' [47:14, 41:14] ( 1 warnings 1303 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:01, 06:23](1911 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:17, 08:06](1980 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 06:25] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [22:14, 16:35](2079 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:11, 06:03] ( 1413 warnings 1171 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:02, 07:45](1928 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [41:13, 37:12] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:15, 05:33](1964 MB) + +PASS -- COMPILE 's2s_intel' [46:13, 38:28] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:48, 10:20](3001 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:48, 03:05](3016 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:47](2461 MB) + +PASS -- COMPILE 's2swa_faster_intel' [36:17, 32:33] ( 1 warnings 1635 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [33:34, 10:01](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [50:14, 48:42] ( 1 warnings 1363 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:20, 20:30](1922 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [25:20, 09:32](1133 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:06, 23:34](1902 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:07] ( 1523 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [37:10, 34:40](1943 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [40:13, 38:29] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [06:29, 04:22](648 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [15:09, 03:14](1541 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:06, 03:44](1557 MB) +PASS -- TEST 'control_latlon_intel' [12:04, 03:15](1546 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:12, 03:22](1542 MB) +PASS -- TEST 'control_c48_intel' [25:11, 11:11](1701 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:33, 10:18](831 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [23:11, 11:11](1707 MB) +PASS -- TEST 'control_c192_intel' [18:18, 09:51](1683 MB) +PASS -- TEST 'control_c384_intel' [21:13, 13:45](1818 MB) +PASS -- TEST 'control_c384gdas_intel' [22:08, 13:33](1005 MB) +PASS -- TEST 'control_stochy_intel' [04:28, 02:11](601 MB) +PASS -- TEST 'control_stochy_restart_intel' [13:27, 01:14](439 MB) +PASS -- TEST 'control_lndp_intel' [03:30, 02:03](607 MB) +PASS -- TEST 'control_iovr4_intel' [05:33, 03:17](598 MB) +PASS -- TEST 'control_iovr5_intel' [05:33, 03:21](605 MB) +PASS -- TEST 'control_p8_intel' [06:24, 03:52](1830 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:31, 03:58](1837 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [13:19, 03:39](1833 MB) +PASS -- TEST 'control_restart_p8_intel' [26:54, 02:07](1055 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:20, 03:42](1833 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [27:01, 02:02](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:18, 03:59](1826 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:21, 03:24](1915 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:09, 06:40](1837 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [17:20, 05:06](1891 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:19, 04:03](1845 MB) +PASS -- TEST 'merra2_thompson_intel' [07:18, 04:25](1842 MB) +PASS -- TEST 'regional_control_intel' [17:03, 07:10](1043 MB) +PASS -- TEST 'regional_restart_intel' [07:41, 03:47](1019 MB) +PASS -- TEST 'regional_decomp_intel' [10:02, 07:27](1036 MB) +PASS -- TEST 'regional_2threads_intel' [08:02, 04:12](1012 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:40, 07:04](1038 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [21:48, 07:04](1038 MB) + +PASS -- COMPILE 'rrfs_intel' [37:13, 35:12] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [23:05, 10:07](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:07, 05:33](1193 MB) +PASS -- TEST 'rap_decomp_intel' [24:41, 10:37](987 MB) +PASS -- TEST 'rap_2threads_intel' [34:50, 09:31](1065 MB) +PASS -- TEST 'rap_restart_intel' [21:05, 05:25](992 MB) +PASS -- TEST 'rap_sfcdiff_intel' [31:53, 10:03](989 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [34:49, 10:47](982 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [15:55, 07:33](995 MB) +PASS -- TEST 'hrrr_control_intel' [28:57, 05:08](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [28:45, 05:20](978 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [26:57, 04:44](1046 MB) +PASS -- TEST 'hrrr_control_restart_intel' [10:28, 02:46](913 MB) +PASS -- TEST 'rrfs_v1beta_intel' [30:03, 09:58](977 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [34:30, 13:15](1939 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [37:30, 12:52](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 34:55] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [31:40, 08:03](967 MB) +PASS -- TEST 'control_ras_intel' [28:28, 04:28](669 MB) + +PASS -- COMPILE 'wam_intel' [37:13, 35:24] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [36:53, 14:34](1614 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:37] ( 1304 remarks ) +PASS -- TEST 'control_p8_faster_intel' [13:56, 03:35](1836 MB) +PASS -- TEST 'regional_control_faster_intel' [10:40, 06:34](1038 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [23:12, 08:21] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:48, 03:04](1561 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:52, 03:04](1574 MB) +PASS -- TEST 'control_stochy_debug_intel' [22:27, 03:47](776 MB) +PASS -- TEST 'control_lndp_debug_intel' [19:27, 03:30](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [24:45, 05:33](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [22:27, 03:31](778 MB) +PASS -- TEST 'control_diag_debug_intel' [22:54, 03:33](1624 MB) +PASS -- TEST 'control_debug_p8_intel' [22:47, 03:37](1868 MB) +PASS -- TEST 'regional_debug_intel' [40:47, 22:05](1046 MB) +PASS -- TEST 'rap_control_debug_intel' [23:25, 06:20](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [22:32, 06:11](1160 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [19:26, 06:04](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [19:26, 06:09](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:27, 06:06](1162 MB) +PASS -- TEST 'rap_diag_debug_intel' [14:35, 06:25](1250 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:26, 06:18](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:25, 06:18](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:27, 06:11](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:25, 06:08](1168 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:25, 05:59](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [14:27, 06:07](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:25, 10:04](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [13:32, 06:02](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [13:33, 06:08](1165 MB) +PASS -- TEST 'rap_flake_debug_intel' [15:27, 06:15](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [19:49, 10:44](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [19:11, 05:06] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [34:47, 16:41](1635 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [34:13, 30:53] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:20, 05:28](1061 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:43, 08:12](910 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:43, 04:14](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:38, 07:51](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:36, 04:00](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:38, 04:30](853 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:22](899 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:33, 02:19](838 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:11] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [13:51, 02:41](1102 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:48, 01:09](1031 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:29](1010 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [41:14, 31:33] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:51, 05:26](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 05:12] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [14:26, 06:04](1050 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:24, 05:57](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [27:56, 17:33](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [27:44, 17:49](858 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [24:40, 10:16](1091 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [30:51, 17:43](1225 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:12, 05:05] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [18:26, 06:05](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [48:14, 41:25] ( 1 warnings 1437 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:23, 06:40](691 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [18:41, 06:06](1074 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [51:44, 09:03](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [51:38, 15:39](770 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [52:58, 19:12](803 MB) +PASS -- TEST 'gnv1_nested_intel' [12:48, 06:29](1658 MB) + +PASS -- COMPILE 'hafs_all_intel' [45:14, 36:25] ( 1283 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [54:22, 08:34](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:24, 08:31](734 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:12, 08:12] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:23, 03:33](1075 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:09](1044 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:32](938 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [09:23, 03:31](938 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:36](938 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:39](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:42](1060 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:31](935 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:42, 07:47](902 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:42, 07:44](853 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:37](1069 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:04](2372 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 05:01](2392 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [13:12, 03:28] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:22, 07:20](1020 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:11] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:33](1075 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:13, 01:46] ( 69 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:33, 01:16](243 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:07](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:42](263 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [42:14, 37:12] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [16:09, 04:58](1902 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [40:14, 36:10] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:59, 06:33](1905 MB) + +PASS -- COMPILE 'atml_intel' [40:13, 38:25] ( 9 warnings 1193 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [31:10, 05:10](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:43, 02:56](1067 MB) + +PASS -- COMPILE 'atml_debug_intel' [19:12, 07:00] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [39:16, 06:30](1882 MB) + +PASS -- COMPILE 'atmw_intel' [44:14, 38:08] ( 1279 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:03, 02:28](1848 MB) + +PASS -- COMPILE 'atmaero_intel' [50:14, 36:15] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:01, 05:16](1909 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:01, 06:16](1701 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:47, 06:26](1713 MB) + +PASS -- COMPILE 'atm_fbh_intel' [43:14, 31:34] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:37, 15:19](1055 MB) SYNOPSIS: -Starting Date/Time: 20250120 21:23:03 -Ending Date/Time: 20250121 01:51:07 -Total Time: 04h:28m:23s -Compiles Completed: 37/37 -Tests Completed: 166/166 +Starting Date/Time: 20250204 02:58:05 +Ending Date/Time: 20250204 08:28:59 +Total Time: 05h:31m:43s +Compiles Completed: 38/38 +Tests Completed: 167/167 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 1d3a5eb490..90cb1dffdd 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,20 +1,20 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -8b8eac654f051017e26b76099b5eb7471f0a110d +57dff5a73044ec93697082dbc42263deaff46b4c Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - 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) + 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) + 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 951a5967c998c3694f142d3a47d746c583f30012 FV3 (remotes/origin/rrfsv1-to-ufs/dev6) + da13577f5356ba7939c52f37bb67980421e5d4eb FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev6) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + 5f2085787cfa4148bb6a3a229537e37fd9c31319 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5576-g5f208578) 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) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 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) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + 8e676278822292a97b2b69da336444ec7d04c06b WW3 (6.07.1-353-g8e676278) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,300 +38,303 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2981978 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250205 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_15545 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:47, 16:01](2079 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 22:05] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [39:42, 21:59](1951 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [47:19, 23:14](2135 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [33:15, 08:52](1214 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:42, 25:54](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:50] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [38:55, 21:30](1950 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:11] ( 1523 warnings 1943 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:52, 28:31](1938 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:39] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [26:02, 16:55](2144 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:47, 16:08](2136 MB) -PASS -- TEST 'cpld_restart_p8_intel' [38:48, 08:34](1793 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:39, 16:00](2163 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [34:05, 08:41](1698 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [23:42, 12:28](2334 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [24:39, 15:37](2124 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [22:46, 13:46](2039 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [27:55, 16:05](2140 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:48, 16:03](2715 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [38:07, 09:08](2713 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:50, 13:04](3703 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:19, 07:23](3537 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:35, 08:04](2126 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:34] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [23:21, 15:25](1982 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:27, 06:49](2054 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:47] ( 1413 warnings 1173 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:30, 14:12](2172 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:47] ( 1413 warnings 1173 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:18, 07:09](2008 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:27, 04:48](2027 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:51] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:02, 08:42](3031 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:00, 03:04](3028 MB) -PASS -- TEST 'cpld_restart_c48_intel' [12:03, 02:02](2476 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:28] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [44:41, 16:22](2142 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 19:34] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [45:24, 18:46](2012 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:37, 08:54](1258 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:27, 21:18](1927 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 07:06] ( 1523 warnings 1943 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:10, 30:48](1978 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:11, 14:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [29:27, 03:45](690 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [27:45, 02:49](1582 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:46, 02:51](1587 MB) -PASS -- TEST 'control_latlon_intel' [27:43, 02:48](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:53, 02:47](1585 MB) -PASS -- TEST 'control_c48_intel' [32:51, 09:02](1705 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [32:37, 08:10](825 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [32:59, 09:08](1702 MB) -PASS -- TEST 'control_c192_intel' [32:05, 08:07](1734 MB) -PASS -- TEST 'control_c384_intel' [40:03, 09:47](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [47:47, 10:00](1331 MB) -PASS -- TEST 'control_stochy_intel' [30:29, 01:52](638 MB) -PASS -- TEST 'control_stochy_restart_intel' [14:41, 01:04](475 MB) -PASS -- TEST 'control_lndp_intel' [25:28, 01:44](636 MB) -PASS -- TEST 'control_iovr4_intel' [26:28, 02:44](634 MB) -PASS -- TEST 'control_iovr5_intel' [25:30, 02:44](633 MB) -PASS -- TEST 'control_p8_intel' [26:19, 03:20](1879 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [26:22, 03:33](1878 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [26:34, 03:21](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [14:08, 01:59](1089 MB) -PASS -- TEST 'control_noqr_p8_intel' [25:13, 03:15](1864 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [13:25, 01:57](1129 MB) -PASS -- TEST 'control_decomp_p8_intel' [25:12, 03:21](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [25:25, 03:53](1934 MB) -PASS -- TEST 'control_p8_lndp_intel' [25:54, 05:45](1876 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [24:40, 04:59](1944 MB) -PASS -- TEST 'control_p8_mynn_intel' [22:35, 03:31](1880 MB) -PASS -- TEST 'merra2_thompson_intel' [22:44, 03:54](1876 MB) -PASS -- TEST 'regional_control_intel' [24:41, 06:32](1109 MB) -PASS -- TEST 'regional_restart_intel' [10:37, 03:34](1086 MB) -PASS -- TEST 'regional_decomp_intel' [27:44, 06:54](1101 MB) -PASS -- TEST 'regional_2threads_intel' [28:42, 04:42](1048 MB) -PASS -- TEST 'regional_noquilt_intel' [23:43, 06:32](1410 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [27:39, 06:31](1114 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [27:45, 06:30](1107 MB) -PASS -- TEST 'regional_wofs_intel' [28:38, 07:59](1892 MB) - -PASS -- COMPILE 'rrfs_intel' [16:11, 13:35] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [34:31, 08:33](1057 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:01, 05:17](1271 MB) -PASS -- TEST 'rap_decomp_intel' [36:29, 08:47](1015 MB) -PASS -- TEST 'rap_2threads_intel' [38:32, 10:09](1081 MB) -PASS -- TEST 'rap_restart_intel' [20:37, 04:24](1038 MB) -PASS -- TEST 'rap_sfcdiff_intel' [36:29, 08:25](1059 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [34:31, 08:47](1009 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [20:49, 06:17](1072 MB) -PASS -- TEST 'hrrr_control_intel' [32:11, 04:23](1020 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [32:10, 04:28](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [33:37, 05:02](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [16:59, 02:21](934 MB) -PASS -- TEST 'rrfs_v1beta_intel' [23:24, 08:21](1051 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [23:30, 09:58](1976 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:26, 09:39](2014 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 13:11] -PASS -- TEST 'control_csawmg_intel' [19:38, 06:42](1013 MB) -PASS -- TEST 'control_ras_intel' [14:25, 03:31](715 MB) - -PASS -- COMPILE 'wam_intel' [14:13, 12:39] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [23:48, 12:51](1649 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:10, 14:21] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [14:24, 03:21](1874 MB) -PASS -- TEST 'regional_control_faster_intel' [16:44, 06:15](1109 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:10, 09:27] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:53, 02:33](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:52, 02:24](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [11:28, 03:03](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:28, 02:46](815 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:34, 04:18](1117 MB) -PASS -- TEST 'control_ras_debug_intel' [08:22, 02:50](818 MB) -PASS -- TEST 'control_diag_debug_intel' [07:44, 02:46](1665 MB) -PASS -- TEST 'control_debug_p8_intel' [07:45, 02:52](1900 MB) -PASS -- TEST 'regional_debug_intel' [22:43, 17:20](1094 MB) -PASS -- TEST 'rap_control_debug_intel' [09:25, 04:58](1196 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:27, 04:46](1196 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:26, 04:54](1199 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 04:54](1198 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 05:00](1203 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:34, 05:14](1280 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:05](1194 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 04:58](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:27, 05:11](1193 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:25, 04:58](1200 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 04:46](1204 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 04:57](1204 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 07:51](1194 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:30, 04:59](1196 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 04:57](1204 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:59](1198 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:35, 08:31](1197 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:10, 06:23] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:48, 13:28](1676 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 04:55](1142 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:21, 07:14](997 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:48, 03:49](925 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:24, 08:40](988 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:42, 04:26](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:56](890 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [21:50, 05:24](978 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:42, 02:06](885 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:13, 13:20] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:52, 02:35](1161 MB) -PASS -- TEST 'conus13km_2threads_intel' [17:54, 01:30](1116 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [17:55, 01:28](1060 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:11, 12:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:37](965 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [14:10, 06:30] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:05](1070 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:49](1075 MB) -PASS -- TEST 'conus13km_debug_intel' [15:58, 13:44](1230 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 13:43](935 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:52, 13:33](1165 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:57, 14:20](1294 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:11, 06:39] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 05:01](1133 MB) - -PASS -- COMPILE 'hafsw_intel' [23:10, 16:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:21, 06:04](733 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:35, 06:42](1131 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:40, 07:39](816 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [35:31, 28:22](845 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [41:37, 34:20](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:11, 07:11](492 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [18:45, 08:37](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [13:05, 03:35](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:36, 09:40](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:01, 04:48](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:59, 04:35](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:02, 05:45](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [17:35, 01:34](400 MB) -PASS -- TEST 'gnv1_nested_intel' [21:28, 04:22](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:10, 06:36] ( 1465 warnings 1445 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:17, 13:29](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:10, 14:38] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [30:23, 14:53](658 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [30:15, 15:12](723 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [25:12, 16:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:46, 11:05](709 MB) - -PASS -- COMPILE 'hafs_all_intel' [22:10, 13:59] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [22:25, 07:34](812 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:24, 10:12](762 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [30:02, 16:22](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:11, 08:03] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:20, 03:00](1132 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:56](1106 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:23, 02:54](1018 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [16:19, 02:57](1025 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [16:19, 04:32](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [13:21, 03:01](1130 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [13:19, 03:01](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [12:18, 02:53](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:16, 06:29](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [16:14, 06:30](1007 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [12:17, 02:59](1155 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [13:19, 04:21](2402 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [12:21, 04:26](2453 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [20:11, 05:24] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:19, 06:31](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [22:12, 07:39] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:20, 03:00](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [26:12, 01:26] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:32, 01:02](251 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:27, 00:57](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:29, 00:38](322 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [25:12, 01:47] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:32, 00:38](565 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:22](445 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:12, 14:42] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:11, 04:13](1967 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [31:12, 13:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:00, 05:15](1975 MB) - -PASS -- COMPILE 'atml_intel' [32:11, 15:02] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:41, 04:54](1862 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:38, 04:57](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 02:51](1072 MB) - -PASS -- COMPILE 'atml_debug_intel' [22:11, 07:33] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:37, 06:10](1898 MB) - -PASS -- COMPILE 'atmw_intel' [30:13, 13:44] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:24, 02:18](1896 MB) - -PASS -- COMPILE 'atmaero_intel' [29:11, 14:09] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [12:20, 06:39](1966 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:25, 05:23](1747 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:07, 05:30](1753 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [26:13, 06:24] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:04, 20:49](4485 MB) - -PASS -- COMPILE 'atm_fbh_intel' [30:13, 12:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [18:33, 13:45](1112 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [27:11, 08:05] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [13:12, 07:56](575 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [24:11, 05:10] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [25:03, 20:15](563 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:10, 18:06] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:52, 15:50](2103 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 19:09] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:47, 21:55](1974 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:18, 23:07](2147 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:06, 08:51](1228 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:51, 25:57](1884 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:11, 23:12] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:50, 21:30](1959 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:36] ( 1523 warnings 1943 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:42, 28:25](1952 MB) + +PASS -- COMPILE 's2swa_intel' [19:10, 17:58] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:54, 17:17](2190 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:52, 15:53](2190 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:41, 08:34](1801 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:44, 16:02](2202 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:49, 08:38](1752 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:39, 12:21](2333 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:44, 15:52](2185 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:41, 13:35](2072 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:51, 16:06](2181 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:51, 15:50](2719 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:07, 09:23](2844 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:43, 12:42](3715 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:16, 07:24](3612 MB) + +PASS -- COMPILE 's2swal_intel' [19:10, 17:55] ( 1 warnings 12 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [19:53, 16:56](2150 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [11:39, 08:44](1785 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:31, 08:05](2162 MB) + +PASS -- COMPILE 's2sw_intel' [17:10, 15:52] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:17, 15:33](2000 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:22, 06:49](2100 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:12] ( 1413 warnings 1173 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:14, 13:50](2221 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:51] ( 1413 warnings 1173 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:08, 07:05](2027 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:14] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:51](2075 MB) + +PASS -- COMPILE 's2s_intel' [16:10, 14:43] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:57, 08:41](3032 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:56, 02:57](3025 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:03, 01:58](2475 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:55] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:30, 16:29](2174 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:10, 17:40] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:08, 18:47](2031 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:23, 08:51](1262 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:15, 21:21](1944 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:18] ( 1523 warnings 1943 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:06, 31:35](2013 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:05] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:43](703 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:44, 02:47](1593 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:48, 02:51](1603 MB) +PASS -- TEST 'control_latlon_intel' [04:41, 02:47](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:50, 02:48](1589 MB) +PASS -- TEST 'control_c48_intel' [10:56, 09:02](1702 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 08:16](837 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:55, 09:00](1706 MB) +PASS -- TEST 'control_c192_intel' [10:01, 08:05](1787 MB) +PASS -- TEST 'control_c384_intel' [13:54, 10:31](1978 MB) +PASS -- TEST 'control_c384gdas_intel' [13:30, 09:58](1335 MB) +PASS -- TEST 'control_stochy_intel' [03:29, 01:49](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:37, 01:08](496 MB) +PASS -- TEST 'control_lndp_intel' [03:24, 01:43](653 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:43](653 MB) +PASS -- TEST 'control_iovr5_intel' [04:29, 02:44](653 MB) +PASS -- TEST 'control_p8_intel' [06:18, 03:20](1890 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:14, 03:36](1891 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:20, 03:16](1891 MB) +PASS -- TEST 'control_restart_p8_intel' [04:11, 01:54](1101 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:21, 03:13](1888 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 01:53](1138 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:11, 03:22](1871 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:04, 03:55](1968 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:42, 05:36](1892 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:24, 04:54](1952 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:23, 03:32](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [06:35, 03:51](1900 MB) +PASS -- TEST 'regional_control_intel' [08:36, 06:32](1122 MB) +PASS -- TEST 'regional_restart_intel' [05:32, 03:34](1123 MB) +PASS -- TEST 'regional_decomp_intel' [08:33, 06:54](1112 MB) +PASS -- TEST 'regional_2threads_intel' [06:40, 04:39](1061 MB) +PASS -- TEST 'regional_noquilt_intel' [08:40, 06:29](1421 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:51, 06:30](1119 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:34, 06:31](1117 MB) +PASS -- TEST 'regional_wofs_intel' [09:33, 07:58](1909 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:39] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:23, 08:33](1064 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:52, 05:11](1355 MB) +PASS -- TEST 'rap_decomp_intel' [11:17, 08:49](1037 MB) +PASS -- TEST 'rap_2threads_intel' [12:17, 10:09](1121 MB) +PASS -- TEST 'rap_restart_intel' [07:34, 04:28](1055 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:06, 08:24](1061 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:00, 08:43](1035 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:41, 06:24](1088 MB) +PASS -- TEST 'hrrr_control_intel' [07:11, 04:23](1040 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:27](1041 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:24, 04:59](1118 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:38, 02:25](963 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:18, 08:20](1051 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:22, 09:56](1991 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 09:37](2012 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:28] +PASS -- TEST 'control_csawmg_intel' [08:36, 06:37](1040 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:29](739 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 12:07] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:45, 12:47](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 13:46] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:21, 03:16](1889 MB) +PASS -- TEST 'regional_control_faster_intel' [08:31, 06:18](1116 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:34] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:41, 02:31](1632 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:40, 02:22](1628 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:07](829 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:44](826 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:19](1144 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:59](832 MB) +PASS -- TEST 'control_diag_debug_intel' [04:45, 02:48](1684 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:56](1922 MB) +PASS -- TEST 'regional_debug_intel' [18:37, 16:59](1117 MB) +PASS -- TEST 'rap_control_debug_intel' [06:26, 04:57](1227 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:52](1225 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:59](1224 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 05:02](1224 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:58](1222 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:17](1307 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 05:09](1221 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:27, 05:13](1222 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:06](1227 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:03](1220 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:58](1222 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 05:09](1228 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 07:59](1225 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:20, 05:12](1216 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 04:56](1226 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:20, 05:00](1223 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:31](1226 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 06:19] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:44, 13:00](1705 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:57, 04:55](1238 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:15, 07:13](1006 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:41, 03:49](929 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:19, 08:40](987 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:28, 04:27](969 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:41, 03:57](915 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:27, 05:27](984 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 02:07](881 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:18] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:53, 02:30](1195 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:49, 01:05](1146 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:29](1098 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 12:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:35](1008 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 05:58] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:54](1106 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:48](1096 MB) +PASS -- TEST 'conus13km_debug_intel' [15:46, 13:47](1256 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:42](961 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:47, 13:21](1201 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 13:25](1323 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:09] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:01](1180 MB) + +PASS -- COMPILE 'hafsw_intel' [17:11, 15:55] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:22, 05:51](908 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:23](1190 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 07:31](964 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:16, 28:23](1016 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:26, 34:24](1026 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:02, 07:11](506 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:29, 08:29](515 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:54, 03:30](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:30, 09:37](482 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 04:44](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 04:29](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:06, 05:41](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:34](409 MB) +PASS -- TEST 'gnv1_nested_intel' [08:10, 04:19](1739 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:11, 06:37] ( 1465 warnings 1445 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:00, 13:09](596 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 15:23] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:14, 15:23](644 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:25, 15:13](732 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:55] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:30, 11:13](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:10, 13:39] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:20, 07:32](973 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 07:47](966 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:02, 16:30](1201 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:54] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:03](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:56](1098 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:21, 02:53](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:56](1011 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:55](1011 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:02](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:01](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:52](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:10, 06:34](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:11, 06:29](1009 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:01](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:21](2394 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:17, 04:22](2392 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:29] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:27](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:55] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:02](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:19] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:07](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:56](326 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](322 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 02:04] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:39](559 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:35, 00:21](445 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:10, 14:00] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:07, 04:12](1992 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 12:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:55, 05:12](2002 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 14:01] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [07:06, 04:25](1875 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:31](1080 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 07:55] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:02, 05:15](1908 MB) + +PASS -- COMPILE 'atmw_intel' [15:10, 13:25] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:21, 02:20](1914 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:12] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:16, 04:37](1988 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:18, 05:24](1763 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:08, 05:28](1788 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:08] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:00, 21:25](4490 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:11] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:27, 14:07](1115 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:11, 08:01] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:09, 07:57](583 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [06:10, 04:57] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:05, 19:09](574 MB) SYNOPSIS: -Starting Date/Time: 20250117 19:12:27 -Ending Date/Time: 20250117 22:03:38 -Total Time: 02h:51m:56s -Compiles Completed: 45/45 -Tests Completed: 191/191 +Starting Date/Time: 20250210 11:03:42 +Ending Date/Time: 20250210 12:49:07 +Total Time: 01h:45m:59s +Compiles Completed: 46/46 +Tests Completed: 192/192 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 482f1ce211..a5c82cf586 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -558f4722abc1d8aa24dbd5499ac3826dd9206095 +74c4de23fd3ae2e48b365192b4fdc0097563da19 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) - 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) + 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) + 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) + cdbed6c48c2626e67ee5c071947d991e6f0fbc2e CMEPS-interface/CMEPS (cmeps_v0.4.1-2314-gcdbed6c) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b40f99dd1701569ee27b01d53c3c8f32f4d33951 FV3 (heads/develop) - 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 951a5967c998c3694f142d3a47d746c583f30012 FV3 (remotes/origin/rrfsv1-to-ufs/dev6) + da13577f5356ba7939c52f37bb67980421e5d4eb FV3/atmos_cubed_sphere (remotes/origin/rrfsv1-to-ufs/dev6) 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) - 449343f16e87e149f05a76b565287c77f53ccf83 FV3/ccpp/physics (EP4-1099-g449343f1) + 5f2085787cfa4148bb6a3a229537e37fd9c31319 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5576-g5f208578) 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) - 162aad89d52ba3ce4369fb0adbe2bbb57d83918e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10365-g162aad89d) + 6fff0955a123c1dea8d70f31271e13d320ff8552 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10366-g6fff0955a) 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) - 9770a245adef971423aac2699ffcf8b36dba3945 WW3 (6.07.1-375-g9770a245) + 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) + 8e676278822292a97b2b69da336444ec7d04c06b WW3 (6.07.1-353-g8e676278) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,241 +38,243 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250107 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2504378 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20250205 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_737893 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:23] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:26, 06:40](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 11:58] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:24, 15:49](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:46, 16:51](1939 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:32, 07:48](1066 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:34, 18:35](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:30, 12:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:32, 15:32](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:17] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:48, 25:43](1941 MB) - -PASS -- COMPILE 's2swa_intel' [13:26, 11:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:56, 08:32](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:21, 08:29](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:02, 05:01](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:47, 08:28](3248 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:11, 05:08](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:26, 16:53](3450 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:41, 08:20](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:13, 06:57](3170 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:21, 08:22](3227 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:14, 13:28](4240 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:59, 09:35](4378 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:08, 08:20](3200 MB) - -PASS -- COMPILE 's2sw_intel' [12:25, 10:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:40, 04:56](1917 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:06, 07:18](1963 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:21] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:04, 05:11](1968 MB) - -PASS -- COMPILE 's2s_intel' [11:25, 10:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:40, 06:13](2880 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:37, 02:09](2893 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:18, 01:39](2311 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:13, 08:20](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:57, 15:41](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:49](1107 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:01, 18:17](1895 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:13] ( 1502 warnings 1941 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:08, 26:59](1961 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:27, 09:35] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:34, 04:05](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:58, 02:44](1559 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:01, 02:40](1570 MB) -PASS -- TEST 'control_latlon_intel' [04:53, 02:43](1554 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:08, 02:47](1564 MB) -PASS -- TEST 'control_c48_intel' [09:22, 06:36](1585 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:01, 06:03](707 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:18, 06:32](1589 MB) -PASS -- TEST 'control_c192_intel' [10:23, 07:25](1684 MB) -PASS -- TEST 'control_c384_intel' [13:47, 09:00](1973 MB) -PASS -- TEST 'control_c384gdas_intel' [14:42, 09:20](1171 MB) -PASS -- TEST 'control_stochy_intel' [04:36, 02:02](617 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:36, 01:21](425 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 01:48](622 MB) -PASS -- TEST 'control_iovr4_intel' [05:36, 02:49](620 MB) -PASS -- TEST 'control_iovr5_intel' [04:35, 02:49](613 MB) -PASS -- TEST 'control_p8_intel' [07:42, 03:15](1852 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:43, 03:25](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:36, 03:09](1850 MB) -PASS -- TEST 'control_restart_p8_intel' [06:19, 02:01](1008 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:28, 03:12](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:46, 02:03](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:17, 03:19](1851 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:14, 06:09](1928 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:02, 05:22](1854 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:25, 04:25](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:23, 03:30](1860 MB) -PASS -- TEST 'merra2_thompson_intel' [08:03, 03:38](1859 MB) -PASS -- TEST 'regional_control_intel' [08:05, 05:18](891 MB) -PASS -- TEST 'regional_restart_intel' [04:52, 03:01](875 MB) -PASS -- TEST 'regional_decomp_intel' [07:55, 05:39](889 MB) -PASS -- TEST 'regional_2threads_intel' [09:52, 07:52](1018 MB) -PASS -- TEST 'regional_noquilt_intel' [07:51, 05:23](1221 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:06, 05:19](890 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:00, 05:22](890 MB) -PASS -- TEST 'regional_wofs_intel' [09:57, 07:17](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [10:26, 08:51] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [11:10, 07:20](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:20, 04:38](1156 MB) -PASS -- TEST 'rap_decomp_intel' [11:10, 07:41](1000 MB) -PASS -- TEST 'rap_2threads_intel' [20:10, 16:12](1075 MB) -PASS -- TEST 'rap_restart_intel' [08:42, 04:02](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:19, 07:18](997 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:19, 07:41](996 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:44, 05:34](883 MB) -PASS -- TEST 'hrrr_control_intel' [08:43, 04:07](994 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:43, 04:09](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:41, 08:07](1068 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:44, 02:23](830 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:38, 07:28](993 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:46, 09:38](1954 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:42, 09:23](1939 MB) - -PASS -- COMPILE 'csawmg_intel' [09:25, 08:05] -PASS -- TEST 'control_csawmg_intel' [09:59, 07:03](954 MB) -PASS -- TEST 'control_ras_intel' [05:34, 03:37](654 MB) - -PASS -- COMPILE 'wam_intel' [10:26, 08:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:13, 12:14](1645 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:26, 08:25] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:33, 03:07](1846 MB) -PASS -- TEST 'regional_control_faster_intel' [07:05, 05:03](889 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 07:32] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:03, 02:56](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:06, 02:51](1603 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:37, 03:38](803 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:34, 03:21](802 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:58, 04:54](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [05:34, 03:19](815 MB) -PASS -- TEST 'control_diag_debug_intel' [06:04, 03:11](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [05:51, 03:20](1896 MB) -PASS -- TEST 'regional_debug_intel' [21:12, 18:25](934 MB) -PASS -- TEST 'rap_control_debug_intel' [07:38, 05:51](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:40, 05:43](1178 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:36, 05:43](1184 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:37, 05:50](1182 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 05:45](1186 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:07](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:34, 05:47](1189 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 05:54](1187 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:35, 05:54](1188 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:34, 05:44](1183 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:36, 05:37](1182 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:34, 05:43](1183 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:39, 09:05](1182 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:35, 05:45](1180 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:36, 05:44](1188 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:35, 05:47](1184 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:56, 09:33](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:22] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:13, 14:19](1678 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:22, 04:24](1035 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:29, 06:17](876 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:27, 03:23](873 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:34, 13:50](934 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:33, 07:11](926 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:34, 03:35](871 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:34, 04:38](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:37, 01:54](761 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 08:03] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:15, 02:14](1079 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:04, 02:05](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:57, 01:29](956 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:12] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:03, 04:15](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:27] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:29](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:38, 05:25](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [17:21, 15:04](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:19, 15:10](823 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:25, 23:22](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:16, 15:01](1218 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:21] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:35](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [11:27, 09:54] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:44, 06:27](690 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:44, 07:34](1050 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:02, 07:42](732 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:54, 13:00](768 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:04, 14:16](786 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:13, 05:52](466 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:48, 07:25](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:26, 03:24](381 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:57, 08:52](448 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:08, 04:12](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:09, 03:53](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:19, 05:04](562 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:40, 01:58](411 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:49] ( 1446 warnings 1444 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:22, 14:29](608 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:26, 09:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:21, 08:28](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:28, 08:28](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:28, 10:00] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:43, 06:43](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:28, 09:13] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:45, 07:12](723 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:42, 07:20](704 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:38, 16:09](894 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:28, 09:57] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:51, 03:58](1916 MB) - -PASS -- COMPILE 'atml_intel' [11:26, 09:23] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:21, 05:20] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:30, 08:26] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:14, 04:45](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:13, 05:17](2995 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:51, 05:16](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:19] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:52, 22:51](4475 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:30, 11:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:56, 06:41](3196 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:28, 11:58] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [34:57, 15:48](1905 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:03, 16:43](1949 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:50, 07:46](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:05, 18:14](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:29, 12:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [32:50, 15:35](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:22, 05:21] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [47:12, 26:09](1948 MB) + +PASS -- COMPILE 's2swa_intel' [15:29, 11:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:26, 08:32](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:03, 08:37](3230 MB) +PASS -- TEST 'cpld_restart_p8_intel' [17:00, 04:57](3114 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [28:54, 08:30](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:16, 05:02](3132 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [34:52, 16:58](3447 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [22:46, 08:24](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [23:12, 07:06](3175 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:56, 08:28](3229 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [32:26, 13:15](4239 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [54:46, 09:39](4201 MB) + +PASS -- COMPILE 's2swal_intel' [15:30, 11:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [23:49, 08:33](3207 MB) + +PASS -- COMPILE 's2sw_intel' [14:29, 11:07] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:01, 04:57](1926 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:34, 07:16](1977 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:26, 10:11] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:28, 05:07](1976 MB) + +PASS -- COMPILE 's2s_intel' [13:26, 10:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [16:02, 06:10](2885 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [09:00, 02:10](2894 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:50, 01:29](2309 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:35, 16:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [27:54, 08:31](3227 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [38:58, 11:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:23, 15:37](1929 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:25, 07:50](1106 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:02, 18:08](1897 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [30:50, 05:14] ( 1502 warnings 1941 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:25, 27:02](1972 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [34:54, 09:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [17:03, 04:06](680 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [16:26, 02:30](1582 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:31, 02:39](1586 MB) +PASS -- TEST 'control_latlon_intel' [16:19, 02:38](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:32, 02:46](1582 MB) +PASS -- TEST 'control_c48_intel' [19:52, 06:30](1601 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [19:27, 05:59](719 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:45, 06:38](1595 MB) +PASS -- TEST 'control_c192_intel' [12:32, 07:15](1706 MB) +PASS -- TEST 'control_c384_intel' [31:23, 08:44](2012 MB) +PASS -- TEST 'control_c384gdas_intel' [30:24, 09:16](1171 MB) +PASS -- TEST 'control_stochy_intel' [09:49, 01:56](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [18:59, 01:11](403 MB) +PASS -- TEST 'control_lndp_intel' [09:44, 01:47](638 MB) +PASS -- TEST 'control_iovr4_intel' [11:50, 02:43](637 MB) +PASS -- TEST 'control_iovr5_intel' [11:53, 02:42](638 MB) +PASS -- TEST 'control_p8_intel' [13:57, 03:08](1866 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [13:02, 03:24](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:48, 03:11](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [18:59, 01:55](1016 MB) +PASS -- TEST 'control_noqr_p8_intel' [15:01, 03:06](1860 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [19:15, 02:00](1022 MB) +PASS -- TEST 'control_decomp_p8_intel' [15:07, 03:07](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [17:32, 06:01](1941 MB) +PASS -- TEST 'control_p8_lndp_intel' [16:30, 05:13](1865 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [17:04, 04:19](1913 MB) +PASS -- TEST 'control_p8_mynn_intel' [15:41, 03:23](1869 MB) +PASS -- TEST 'merra2_thompson_intel' [15:20, 03:38](1862 MB) +PASS -- TEST 'regional_control_intel' [09:14, 05:20](915 MB) +PASS -- TEST 'regional_restart_intel' [18:24, 03:18](903 MB) +PASS -- TEST 'regional_decomp_intel' [14:07, 05:43](914 MB) +PASS -- TEST 'regional_2threads_intel' [14:11, 07:58](1027 MB) +PASS -- TEST 'regional_noquilt_intel' [16:18, 05:20](1216 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [18:21, 05:40](914 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [24:24, 05:20](914 MB) +PASS -- TEST 'regional_wofs_intel' [25:29, 06:56](1618 MB) + +PASS -- COMPILE 'rrfs_intel' [33:51, 08:42] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [27:08, 07:27](1022 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:52, 04:33](1221 MB) +PASS -- TEST 'rap_decomp_intel' [25:07, 07:38](1022 MB) +PASS -- TEST 'rap_2threads_intel' [33:12, 16:02](1090 MB) +PASS -- TEST 'rap_restart_intel' [52:25, 04:01](783 MB) +PASS -- TEST 'rap_sfcdiff_intel' [25:05, 07:14](1019 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [25:01, 07:31](1017 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [49:40, 05:37](795 MB) +PASS -- TEST 'hrrr_control_intel' [21:56, 03:55](1012 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [21:33, 04:02](1010 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [26:01, 08:05](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [38:22, 02:19](760 MB) +PASS -- TEST 'rrfs_v1beta_intel' [25:04, 07:15](1012 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [25:07, 09:26](1977 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [25:12, 09:21](1969 MB) + +PASS -- COMPILE 'csawmg_intel' [32:52, 08:05] +PASS -- TEST 'control_csawmg_intel' [22:35, 07:04](962 MB) +PASS -- TEST 'control_ras_intel' [17:05, 03:30](674 MB) + +PASS -- COMPILE 'wam_intel' [32:51, 08:09] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [21:39, 12:04](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [33:52, 08:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [17:59, 03:13](1862 MB) +PASS -- TEST 'regional_control_faster_intel' [16:22, 05:23](915 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [32:51, 07:35] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [20:31, 02:51](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:42, 02:51](1623 MB) +PASS -- TEST 'control_stochy_debug_intel' [15:09, 03:42](826 MB) +PASS -- TEST 'control_lndp_debug_intel' [11:54, 03:20](830 MB) +PASS -- TEST 'control_csawmg_debug_intel' [59:56, 05:02](1119 MB) +PASS -- TEST 'control_ras_debug_intel' [57:45, 03:18](832 MB) +PASS -- TEST 'control_diag_debug_intel' [56:12, 03:19](1681 MB) +PASS -- TEST 'control_debug_p8_intel' [53:57, 03:11](1908 MB) +PASS -- TEST 'regional_debug_intel' [08:04, 18:37](949 MB) +PASS -- TEST 'rap_control_debug_intel' [54:42, 05:45](1204 MB) +PASS -- TEST 'hrrr_control_debug_intel' [54:40, 05:39](1199 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [51:42, 05:37](1202 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [50:34, 05:39](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [42:25, 05:42](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [42:28, 06:03](1293 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:15, 05:52](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [41:15, 05:53](1208 MB) +PASS -- TEST 'rap_lndp_debug_intel' [40:14, 05:49](1210 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [38:19, 05:37](1207 MB) +PASS -- TEST 'rap_noah_debug_intel' [38:15, 05:37](1204 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [38:11, 05:48](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:14, 08:59](1198 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [37:19, 05:40](1196 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [30:06, 05:55](1205 MB) +PASS -- TEST 'rap_flake_debug_intel' [30:06, 05:41](1209 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [33:19, 09:39](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [29:52, 04:23] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [23:41, 14:24](1704 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:54, 08:01] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [21:39, 04:28](1072 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [22:41, 06:14](891 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:35, 03:26](891 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [21:45, 13:51](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:00, 07:09](927 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:35, 03:40](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:43, 04:48](765 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:41, 01:57](729 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:53, 08:10] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:20, 02:21](1089 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:13, 02:07](1074 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:12, 01:36](786 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:50, 08:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:00, 04:27](922 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:55, 04:31] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:39, 05:39](1080 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:41, 05:16](1075 MB) +PASS -- TEST 'conus13km_debug_intel' [19:32, 14:55](1164 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:27, 15:10](885 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [28:42, 23:09](1161 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:33, 14:58](1234 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:50, 04:18] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:41, 05:32](1110 MB) + +PASS -- COMPILE 'hafsw_intel' [19:56, 10:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:52, 06:52](711 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:52, 07:46](1073 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:15, 07:48](765 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:55, 13:01](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:22, 14:32](819 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:22, 06:38](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:55, 07:32](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:30, 03:28](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:03, 09:35](447 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:09, 04:37](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:17, 04:51](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:27, 05:19](565 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:43, 02:14](413 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:50, 04:48] ( 1446 warnings 1444 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:49, 14:52](684 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:57, 09:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:40, 08:31](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:57, 08:38](792 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:56, 09:31] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:57, 06:54](784 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:48, 09:02] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:57, 07:33](764 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:56, 07:35](738 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:48, 16:21](895 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [27:53, 09:53] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:55, 04:13](1921 MB) + +PASS -- COMPILE 'atml_intel' [13:39, 09:45] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:35, 05:32] ( 872 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [15:41, 08:31] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:09, 04:37](3118 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:06, 05:08](3007 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:57, 05:27](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:32, 04:15] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:03, 22:43](4557 MB) SYNOPSIS: -Starting Date/Time: 20250121 12:48:08 -Ending Date/Time: 20250121 14:19:48 -Total Time: 01h:32m:26s -Compiles Completed: 33/33 +Starting Date/Time: 20250211 19:57:03 +Ending Date/Time: 20250212 02:13:06 +Total Time: 06h:17m:02s +Compiles Completed: 34/34 Tests Completed: 157/157 NOTES: diff --git a/tests/module-setup.sh b/tests/module-setup.sh index d39bbeb95c..f7e563d314 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -18,7 +18,7 @@ elif [[ ${MACHINE_ID} = hera ]] ; then elif [[ ${MACHINE_ID} = orion ]] ; then # We are on Orion if ( ! eval module help > /dev/null 2>&1 ) ; then - source /apps/lmod/init/bash + source /apps/other/lmod/lmod/init/bash fi module purge @@ -51,13 +51,6 @@ elif [[ ${MACHINE_ID} = derecho ]] ; then fi module purge -elif [[ ${MACHINE_ID} = stampede ]] ; then - # We are on TACC Stampede - if ( ! eval module help > /dev/null 2>&1 ) ; then - source /opt/apps/lmod/lmod/init/bash - fi - module purge - elif [[ ${MACHINE_ID} = frontera ]] ; then # We are on TACC Frontera if ( ! eval module help > /dev/null 2>&1 ) ; then @@ -81,14 +74,6 @@ elif [[ ${MACHINE_ID} = gaeac6 ]]; then source /opt/cray/pe/lmod/lmod/init/bash fi module reset - -elif [[ ${MACHINE_ID} = expanse ]]; then - # We are on SDSC Expanse - if ( ! eval module help > /dev/null 2>&1 ) ; then - source /etc/profile.d/modules.sh - fi - module purge - module load slurm/expanse/20.02.3 elif [[ ${MACHINE_ID} = noaacloud ]] ; then # We are on NOAA Cloud diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index b3ae2bde9e..832ab92a77 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -263,6 +263,19 @@ iau_filter_increments = @[IAU_FILTER_INCREMENTS] / +&land_iau_nml + do_land_iau = @[DO_LAND_IAU] + land_iau_fhrs = @[LAND_IAU_FHRS] + land_iau_delthrs = @[LAND_IAU_DELHRS] + land_iau_inc_files = @[LAND_IAU_INC_FILES] + lsoil_incr = @[LSOIL_INCR] + land_iau_filter_increments = @[LAND_IAU_FILTER_INC] + land_iau_upd_stc = @[LAND_IAU_UPD_STC] + land_iau_upd_slc = @[LAND_IAU_UPD_SLC] + land_iau_do_stcsmc_adjustment = @[LAND_IAU_DP_STCSMC_ADJ] + land_iau_min_T_increment = @[LAND_IAU_MIN_T_INC] +/ + &cires_ugwp_nml knob_ugwp_solver = @[KNOB_UGWP_SOLVER] knob_ugwp_source = @[KNOB_UGWP_SOURCE] diff --git a/tests/parm/global_control_lnd_iau.nml.IN b/tests/parm/global_control_lnd_iau.nml.IN deleted file mode 100644 index c781e0d6b3..0000000000 --- a/tests/parm/global_control_lnd_iau.nml.IN +++ /dev/null @@ -1,412 +0,0 @@ -&atmos_model_nml - blocksize = @[BLOCKSIZE] - chksum_debug = @[CHKSUM_DEBUG] - dycore_only = @[DYCORE_ONLY] - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. - max_output_fields = @[MAX_OUTPUT_FIELDS] -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = @[DOMAINS_STACK_SIZE] - print_memory_usage = .false. -/ - -&fms2_io_nml - netcdf_default_format = 'netcdf4' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = @[IO_LAYOUT] - npx = @[NPX] - npy = @[NPY] - ntiles = @[NTILES] - npz = @[NPZ] - dz_min = @[DZ_MIN] - psm_bc = @[PSM_BC] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .true. - reset_eta = .false. - n_sponge = @[N_SPONGE] - nudge_qv = @[NUDGE_QV] - nudge_dz = @[NUDGE_DZ] - tau = @[TAU] - fast_tau_w_sec = @[FAST_TAU_W_SEC] - rf_cutoff = @[RF_CUTOFF] - d2_bg_k1 = @[D2_BG_K1] - d2_bg_k2 = @[D2_BG_K2] - kord_tm = @[KORD_TM] - kord_mt = @[KORD_MT] - kord_wz = @[KORD_WZ] - kord_tr = @[KORD_TR] - hydrostatic = @[HYDROSTATIC] - phys_hydrostatic = @[PHYS_HYDROSTATIC] - use_hydro_pressure = @[USE_HYDRO_PRESSURE] - pass_full_omega_to_physics_in_non_hydrostatic_mode = @[UPDATE_FULL_OMEGA] - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = @[K_SPLIT] - n_split = @[N_SPLIT] - nwat = @[NWAT] - na_init = @[NA_INIT] - d_ext = 0. - dnats = @[DNATS] - fv_sg_adj = @[FV_SG_ADJ] - d2_bg = 0. - nord = @[NORD] - dddmp = @[DDDMP] - d4_bg = @[D4_BG] - vtdm4 = @[VTDM4] - delt_max = @[DELT_MAX] - ke_bg = 0. - do_vort_damp = @[DO_VORT_DAMP] - external_ic = @[EXTERNAL_IC] - external_eta = @[EXTERNAL_ETA] - gfs_phil = @[GFS_PHIL] - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = @[NCEP_IC] - d_con = @[D_CON] - hord_mt = @[HORD_MT] - hord_vt = @[HORD_VT] - hord_tm = @[HORD_TM] - hord_dp = @[HORD_DP] - hord_tr = @[HORD_TR] - adjust_dry_mass = @[ADJUST_DRY_MASS] - dry_mass = @[DRY_MASS] - consv_te = @[CONSV_TE] - do_sat_adj = @[DO_SAT_ADJ] - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = @[PRINT_FREQ] - warm_start = @[WARM_START] - no_dycore = @[NO_DYCORE] - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = @[RES_LATLON_DYNAMICS] - increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] -/ - -&external_ic_nml - filtered_terrain = @[FILTERED_TERRAIN] - levp = @[NPZP] - gfs_dwinds = @[GFS_DWINDS] - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = @[FHZERO] - h2o_phys = .true. - ldiag3d = @[LDIAG3D] - qdiag3d = @[QDIAG3D] - print_diff_pgr = @[PRINT_DIFF_PGR] - fhcyc = @[FHCYC] - use_ufo = @[USE_UFO] - pre_rad = @[PRE_RAD] - imp_physics = @[IMP_PHYSICS] - iovr = @[IOVR] - ltaerosol = @[LTAEROSOL] - lradar = @[LRADAR] - ttendlim = @[TTENDLIM] - dt_inner = @[DT_INNER] - sedi_semi = @[SEDI_SEMI] - decfl = @[DECFL] - oz_phys = @[OZ_PHYS_NEW] - oz_phys_2015 = @[OZ_PHYS_OLD] - lsoil_lsm = @[LSOIL_LSM] - do_mynnedmf = @[DO_MYNNEDMF] - do_mynnsfclay = @[DO_MYNNSFCLAY] - icloud_bl = @[ICLOUD_BL] - bl_mynn_edmf = @[BL_MYNN_EDMF] - bl_mynn_tkeadvect = @[BL_MYNN_TKEADVECT] - bl_mynn_edmf_mom = @[BL_MYNN_EDMF_MOM] - do_ugwp = @[DO_UGWP] - do_tofd = @[DO_TOFD] - gwd_opt = @[GWD_OPT] - do_ugwp_v0 = @[DO_UGWP_V0] - do_ugwp_v1 = @[DO_UGWP_V1] - do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] - do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] - do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] - do_gsl_drag_ss = @[DO_GSL_DRAG_SS] - do_gwd_opt_psl = @[DO_GWD_OPT_PSL] - psl_gwd_dx_factor = @[PSL_GWD_DX_FACTOR] - do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] - do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - min_lakeice = @[MIN_LAKEICE] - min_seaice = @[MIN_SEAICE] - use_cice_alb = @[USE_CICE_ALB] - pdfcld = @[PDFCLD] - fhswr = @[FHSWR] - fhlwr = @[FHLWR] - ialb = @[IALB] - iems = @[IEMS] - iaer = @[IAER] - icliq_sw = @[ICLIQ_SW] - ico2 = @[ICO2] - isubc_sw = @[ISUBC_SW] - isubc_lw = @[ISUBC_LW] - isol = @[ISOL] - lwhtr = @[LWHTR] - swhtr = @[SWHTR] - cnvgwd = @[CNVGWD] - shal_cnv = @[SHAL_CNV] - cal_pre = @[CAL_PRE] - redrag = @[REDRAG] - dspheat = @[DSPHEAT] - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - isatmedmf = @[ISATMEDMF] - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = @[RANDOM_CLDS] - trans_trac = @[TRANS_TRAC] - cnvcld = @[CNVCLD] - imfshalcnv = @[IMFSHALCNV] - imfdeepcnv = @[IMFDEEPCNV] - progsigma = @[PROGSIGMA] - betascu = @[BETASCU] - betamcu = @[BETAMCU] - betadcu = @[BETADCU] - ras = @[RAS] - cdmbgwd = @[CDMBWD] - prslrd0 = @[PRSLRD0] - ivegsrc = @[IVEGSRC] - isot = @[ISOT] - lsoil = @[LSOIL] - lsm = @[LSM] - iopt_dveg = @[IOPT_DVEG] - iopt_crs = @[IOPT_CRS] - iopt_btr = @[IOPT_BTR] - iopt_run = @[IOPT_RUN] - iopt_sfc = @[IOPT_SFC] - iopt_trs = @[IOPT_TRS] - iopt_diag = @[IOPT_DIAG] - iopt_frz = @[IOPT_FRZ] - iopt_inf = @[IOPT_INF] - iopt_rad = @[IOPT_RAD] - iopt_alb = @[IOPT_ALB] - iopt_snf = @[IOPT_SNF] - iopt_tbot = @[IOPT_TBOT] - iopt_stc = @[IOPT_STC] - debug = @[DEBUG] - nstf_name = @[NSTF_NAME] - nst_anl = @[NST_ANL] - psautco = @[PSAUTCO] - prautco = @[PRAUTCO] - lgfdlmprad = @[LGFDLMPRAD] - effr_in = @[EFFR_IN] - ldiag_ugwp = @[LDIAG_UGWP] - fscav_aero = @[FSCAV_AERO] - do_RRTMGP = @[DO_RRTMGP] - active_gases = @[ACTIVE_GASES] - ngases = @[NGASES] - lw_file_gas = @[LW_FILE_GAS] - lw_file_clouds = @[LW_FILE_CLOUDS] - sw_file_gas = @[SW_FILE_GAS] - sw_file_clouds = @[SW_FILE_CLOUDS] - rrtmgp_nGptsSW = @[RRTMGP_NGPTSSW] - rrtmgp_nGptsLW = @[RRTMGP_NGPTSLW] - rrtmgp_nBandsLW = @[RRTMGP_NBANDSLW] - rrtmgp_nBandsSW = @[RRTMGP_NBANDSSW] - doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] - doGP_lwscat = @[DOGP_LWSCAT] - doGP_sgs_cnv = @[DOGP_SGS_CNV] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - iaufhrs = @[IAUFHRS] - iau_delthrs = @[IAU_DELTHRS] - iau_inc_files= @[IAU_INC_FILES] - iau_drymassfixer = .false. - use_med_flux = @[USE_MED_FLUX] - frac_grid = @[FRAC_GRID] - cplchm = @[CPLCHM] - cplflx = @[CPLFLX] - cplice = @[CPLICE] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - cpllnd = @[CPLLND] - cpllnd2atm = @[CPLLND2ATM] - do_ca = @[DO_CA] - ca_global = @[CA_GLOBAL] - ca_sgs = @[CA_SGS] - nca = @[NCA] - ncells = @[NCELLS] - nlives = @[NLIVES] - nseed = @[NSEED] - nfracseed = @[NFRACSEED] - nthresh = @[NTHRESH] - ca_trigger = @[CA_TRIGGER] - nspinup = @[NSPINUP] - iseed_ca = @[ISEED_CA] -/ - -&land_iau_nml - do_land_iau=.true. - land_iau_fhrs=3,6,9 - land_iau_delthrs=6 - land_iau_inc_files='sfc_inc','' - lsoil_incr=3 - land_iau_filter_increments=.false. - land_iau_upd_stc=.true. - land_iau_upd_slc=.true. - land_iau_do_stcsmc_adjustment=.true. - land_iau_min_T_increment=0.0001 -/ - -&cires_ugwp_nml - knob_ugwp_solver = @[KNOB_UGWP_SOLVER] - knob_ugwp_source = @[KNOB_UGWP_SOURCE] - knob_ugwp_wvspec = @[KNOB_UGWP_WVSPEC] - knob_ugwp_azdir = @[KNOB_UGWP_AZDIR] - knob_ugwp_stoch = @[KNOB_UGWP_STOCH] - knob_ugwp_effac = @[KNOB_UGWP_EFFAC] - knob_ugwp_doaxyz = @[KNOB_UGWP_DOAXYZ] - knob_ugwp_doheat = @[KNOB_UGWP_DOHEAT] - knob_ugwp_dokdis = @[KNOB_UGWP_DOKDIS] - knob_ugwp_ndx4lh = @[KNOB_UGWP_NDX4LH] - knob_ugwp_version = @[KNOB_UGWP_VERSION] - ! This is only for UGWP v0 -@[HIDE_UGWPV0] launch_level = @[LAUNCH_LEVEL] - ! These are only for UGWP v1 -@[HIDE_UGWPV1] knob_ugwp_palaunch = @[KNOB_UGWP_PALAUNCH] -@[HIDE_UGWPV1] knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] -@[HIDE_UGWPV1] knob_ugwp_lzmax = @[KNOB_UGWP_LZMAX] -@[HIDE_UGWPV1] knob_ugwp_lzmin = @[KNOB_UGWP_LZMIN] -@[HIDE_UGWPV1] knob_ugwp_lzstar = @[KNOB_UGWP_LZSTAR] -@[HIDE_UGWPV1] knob_ugwp_taumin = @[KNOB_UGWP_TAUMIN] -@[HIDE_UGWPV1] knob_ugwp_tauamp = @[KNOB_UGWP_TAUAMP] -@[HIDE_UGWPV1] knob_ugwp_lhmet = @[KNOB_UGWP_LHMET] -@[HIDE_UGWPV1] knob_ugwp_orosolv = @[KNOB_UGWP_OROSOLV] -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0e-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = @[REIFLAG] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = @[FNGLAC] - FNMXIC = @[FNMXIC] - FNTSFC = @[FNTSFC] - FNSNOC = @[FNSNOC] - FNZORC = @[FNZORC] - FNALBC = @[FNALBC] - FNALBC2 = @[FNALBC2] - FNAISC = @[FNAISC] - FNTG3C = @[FNTG3C] - FNVEGC = @[FNVEGC] - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSOCC = @[FNSOCC] - FNSMCC = @[FNSMCC] - FNMSKH = @[FNMSKH] - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = @[FNVMNC] - FNVMXC = @[FNVMXC] - FNSLPC = @[FNSLPC] - FNABSC = @[FNABSC] - LDEBUG = @[LDEBUG] - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = @[LANDICE] - FTSFS = @[FTSFS] - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = @[FSICL] - FSICS = @[FSICS] - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - lndp_model_type = @[LNDP_MODEL_TYPE] - LNDP_TAU=@[LNDP_TAU] - LNDP_LSCALE=@[LNDP_LSCALE] - ISEED_LNDP=@[ISEED_LNDP] - lndp_var_list = @[LNDP_VAR_LIST] - lndp_prt_list = @[LNDP_PRT_LIST] -/ - -&MOM_input_nml - output_directory = '@[MOM6_OUTPUT_DIR]', - input_filename = '@[MOM6_RESTART_SETTING]' - restart_input_dir = 'INPUT/', - restart_output_dir = '@[MOM6_RESTART_DIR]' - parameter_filename = 'INPUT/MOM_input','INPUT/MOM_override'/ diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index cb7637225a..fb7de3eb9b 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -21,6 +21,7 @@ history_file_on_native_grid: @[HISTORY_FILE_ON_NATIVE_GRID] write_dopost: @[WRITE_DOPOST] write_nsflip: @[WRITE_NSFLIP] num_files: @[NUM_FILES] +fv3atm_output_dir: @[FV3ATM_OUTPUT_DIR] filename_base: @[FILENAME_BASE] output_grid: @[OUTPUT_GRID] output_file: @[OUTPUT_FILE] diff --git a/tests/parm/ufs.configure.atm_lm4.IN b/tests/parm/ufs.configure.atm_lm4.IN index 2eaa5111c7..84ff5f2ad4 100644 --- a/tests/parm/ufs.configure.atm_lm4.IN +++ b/tests/parm/ufs.configure.atm_lm4.IN @@ -26,6 +26,7 @@ MED_attributes:: history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] + samegrid_atmlnd = @[samegrid_atmlnd] history_tile_lnd = 96 history_n_lnd_inst = 6 history_option_lnd_inst = nhours diff --git a/tests/parm/ufs.configure.atm_lnd.IN b/tests/parm/ufs.configure.atm_lnd.IN index 6a01acf8cf..c00fd9ea52 100644 --- a/tests/parm/ufs.configure.atm_lnd.IN +++ b/tests/parm/ufs.configure.atm_lnd.IN @@ -26,6 +26,7 @@ MED_attributes:: history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] + samegrid_atmlnd = @[samegrid_atmlnd] :: # ATM # @@ -46,6 +47,7 @@ LND_attributes:: Diagnostic = 0 mosaic_file = @[mosaic_file] input_dir = @[lnd_input_dir] + fixed_dir = @[lnd_fixed_dir] ic_type = @[lnd_ic_type] layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs num_soil_levels = 4 @@ -77,13 +79,13 @@ LND_attributes:: runSeq:: @@[coupling_interval_sec] MED med_phases_prep_atm + MED med_phases_prep_lnd MED -> ATM :remapMethod=redist + MED -> LND :remapMethod=redist ATM + LND ATM -> MED :remapMethod=redist MED med_phases_post_atm - MED med_phases_prep_lnd - MED -> LND :remapMethod=redist - LND LND -> MED :remapMethod=redist MED med_phases_post_lnd MED med_phases_restart_write diff --git a/tests/parm/ufs.configure.s2swal_fast.IN b/tests/parm/ufs.configure.s2swal_fast.IN new file mode 100644 index 0000000000..5fd5de3b04 --- /dev/null +++ b/tests/parm/ufs.configure.s2swal_fast.IN @@ -0,0 +1,205 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: @[ESMF_THREADING] + +# EARTH # +EARTH_component_list: MED ATM CHM OCN ICE WAV LND +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + mesh_wav = @[MESH_WAV] + user_histname = @[WW3_user_histname] + use_historync = @[WW3_historync] + use_restartnc = @[WW3_restartnc] + restart_from_binary = @[WW3_restart_from_binary] + pio_typename = @[WW3_PIO_FORMAT] + pio_numiotasks = @[WW3_PIO_IOTASKS] + pio_stride = @[WW3_PIO_STRIDE] + pio_rearranger = @[WW3_PIO_REARR] + pio_root = @[WW3_PIO_ROOT] +:: + +# LND # +LND_model: @[lnd_model] +LND_petlist_bounds: @[lnd_petlist_bounds] +LND_omp_num_threads: @[lnd_omp_num_threads] +LND_attributes:: + Verbosity = 1 + Diagnostic = 0 + mosaic_file = @[mosaic_file] + input_dir = @[lnd_input_dir] + fixed_dir = @[lnd_fixed_dir] + ic_type = @[lnd_ic_type] + layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs + num_soil_levels = 4 + forcing_height = 10 + soil_level_thickness = 0.10:0.30:0.60:1.00 + soil_level_nodes = 0.05:0.25:0.70:1.50 + dynamic_vegetation_option = 4 + canopy_stomatal_resistance_option = 2 + soil_wetness_option = 1 + runoff_option = 1 + surface_exchange_option = 3 + supercooled_soilwater_option = 1 + frozen_soil_adjust_option = 1 + radiative_transfer_option = 3 + snow_albedo_option = @[snow_albedo_option] + precip_partition_option = @[precip_partition_option] + soil_temp_lower_bdy_option = 2 + soil_temp_time_scheme_option = 3 + surface_evap_resistance_option = 1 # not used, it is fixed to 4 in sfc_noahmp_drv.F90 + glacier_option = 1 + surface_thermal_roughness_option = 2 + output_freq = 3600 + restart_freq = -1 + calc_snet = @[CALC_SNET] + initial_albedo = @[initial_albedo] +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED med_phases_prep_lnd + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + MED -> WAV :remapMethod=redist + MED -> LND :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + WAV + LND + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + WAV -> MED :remapMethod=redist + MED med_phases_post_wav + LND -> MED :remapMethod=redist + MED med_phases_post_lnd + MED med_phases_ocnalb_run + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + LND_model = @[lnd_model] + coupling_mode = @[CPLMODE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/rt.conf b/tests/rt.conf index 1ed8c56eae..d164e31c36 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -56,6 +56,10 @@ RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 +COMPILE | s2swal | intel | -DAPP=S2SWAL -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | +RUN | cpld_control_p8_lnd | - noaacloud wcoss2 | baseline | +RUN | cpld_restart_p8_lnd | - noaacloud wcoss2 | | cpld_control_p8_lnd + # Aerosol, no Wave RUN | cpld_s2sa_p8 | - noaacloud | baseline | @@ -304,12 +308,11 @@ COMPILE | atm_ds2s_docn_dice | intel | -DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17 RUN | atm_ds2s_docn_dice | - noaacloud wcoss2 acorn | baseline | cpld_control_nowave_noaero_p8 ### ATM-LND tests ### -COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 | -RUN | control_p8_atmlnd_sbs | - noaacloud wcoss2 | baseline | +COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | RUN | control_p8_atmlnd | - noaacloud wcoss2 | baseline | RUN | control_restart_p8_atmlnd | - noaacloud wcoss2 | | control_p8_atmlnd -COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON | | fv3 | +COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DDEBUG=ON | | fv3 | RUN | control_p8_atmlnd_debug | - noaacloud wcoss2 | baseline | ### ATM-WAV tests ### diff --git a/tests/rt.sh b/tests/rt.sh index 65c97132b9..df13d80cc1 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -947,39 +947,6 @@ case ${MACHINE_ID} in ROCOTO_SCHEDULER="pbspro" fi ;; - stampede) - echo "rt.sh: Setting up stampede..." - export PYTHONPATH= - if [[ "${ECFLOW:-false}" == true ]] ; then - ECFLOW_START= - fi - QUEUE=skx-normal - COMPILE_QUEUE=skx-dev - PARTITION= - dprefix="${SCRATCH}/ufs-weather-model/run" - DISKNM="/work2/07736/minsukji/stampede2/ufs-weather-model/RT" - STMP="${dprefix}" - PTMP="${dprefix}" - SCHEDULER="slurm" - export MPIEXEC="ibrun" - export MPIEXECOPTS= - ;; - expanse) - echo "rt.sh: Setting up expanse..." - export PYTHONPATH= - - if [[ "${ECFLOW:-false}" == true ]] ; then - export ECFLOW_START= - fi - QUEUE="compute" - COMPILE_QUEUE="shared" - PARTITION= - dprefix="/expanse/lustre/scratch/${USER}/temp_project/run" - DISKNM="/expanse/lustre/scratch/domh/temp_project/RT" - STMP="${dprefix}" - PTMP="${dprefix}" - SCHEDULER="slurm" - ;; noaacloud) echo "rt.sh: Setting up noaacloud..." export PATH="/contrib/EPIC/bin:${PATH}" @@ -1093,7 +1060,7 @@ if [[ ${ROCOTO} == true ]]; then echo "rt.sh: Verifying ROCOTO support..." case ${MACHINE_ID} in - wcoss2|acorn|expanse|stampede) + wcoss2|acorn) die "Rocoto not supported on this machine, please do not use '-r'." ;; *) @@ -1135,7 +1102,7 @@ fi if [[ ${ECFLOW} == true ]]; then echo "Verifying ECFLOW support..." case ${MACHINE_ID} in - expanse|stampede|noaacloud) + noaacloud) die "ECFLOW not supported on this machine, please do not use '-e'." ;; *) diff --git a/tests/run_test.sh b/tests/run_test.sh index cd46804607..59446fad2f 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -113,7 +113,7 @@ case ${MACHINE_ID} in module load miniconda/3.9.12 module load nccmp/1.9.0.1 ;; - stampede|expanse|noaacloud) + noaacloud) echo "No special nccmp load necessary" ;; gaeac5) @@ -483,7 +483,7 @@ if [[ ${skip_check_results} == false ]]; then else if [[ ${i##*.} == nc* ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaeac5 gaeac6 jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then + if [[ " orion hercules hera wcoss2 acorn derecho gaeac5 gaeac6 jet s4 noaacloud frontera" =~ ${MACHINE_ID} ]]; then printf "USING NCCMP.." >> "${RT_LOG}" printf "USING NCCMP.." if [[ ${CMP_DATAONLY} == false ]]; then diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..978fe32d9a 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,63 @@ +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 +datm_cdeps_control_cfsr intel +datm_cdeps_restart_cfsr intel +datm_cdeps_control_gefs intel +datm_cdeps_iau_gefs intel +datm_cdeps_stochy_gefs intel +datm_cdeps_ciceC_cfsr intel +datm_cdeps_bulk_cfsr intel +datm_cdeps_bulk_gefs intel +datm_cdeps_mx025_cfsr intel +datm_cdeps_mx025_gefs intel +datm_cdeps_multiple_files_cfsr intel +datm_cdeps_3072x1536_cfsr intel +datm_cdeps_gfs intel +datm_cdeps_debug_cfsr intel +datm_cdeps_control_cfsr_faster intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +cpld_control_p8_lnd intel +cpld_restart_p8_lnd intel +cpld_control_gfsv17 intelllvm +cpld_debug_gfsv17 intelllvm +cpld_control_sfs intelllvm +cpld_control_p8 intelllvm +datm_cdeps_control_cfsr intelllvm +datm_cdeps_debug_cfsr intelllvm +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu +datm_cdeps_control_cfsr gnu diff --git a/tests/tests/control_c48_lnd_iau b/tests/tests/control_c48_lnd_iau index 9852b68dbd..e96a0a1c2c 100644 --- a/tests/tests/control_c48_lnd_iau +++ b/tests/tests/control_c48_lnd_iau @@ -75,7 +75,8 @@ export IOVR=3 export IMO=192 export JMO=94 -export PERT_CLDS=.true. +export DO_LAND_IAU=.true. +export XR_CNVCLD=.true. export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" export FNMSKH_control="'global_slmask.t62.192.94.grb'" @@ -83,4 +84,4 @@ export FNSMCC=${FNSMCC_control} export FNMSKH=${FNMSKH_control} export FV3_RUN=control_run.IN -export INPUT_NML=global_control_lnd_iau.nml.IN +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_p8_atmlnd b/tests/tests/control_p8_atmlnd index 68b65d0e5b..e9bc04d246 100644 --- a/tests/tests/control_p8_atmlnd +++ b/tests/tests/control_p8_atmlnd @@ -4,6 +4,8 @@ # ############################################################################### +source tests/control_p8 + export TEST_DESCR="Compare global control results with previous trunk version" export CNTL_DIR=control_p8_atmlnd @@ -95,124 +97,7 @@ export LIST_FILES="sfcf000.tile1.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" -export_fv3 -export_tiled -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='cubed_sphere_grid' -export WRITE_DOPOST=.false. -export OUTPUT_FH='0 21 24' - -export IALB=2 -export IEMS=2 -export LSM=2 -export IOPT_DVEG=4 -export IOPT_CRS=2 -export IOPT_RAD=3 -export IOPT_ALB=1 -export IOPT_STC=3 -export IOPT_SFC=3 -export IOPT_TRS=2 -export IOPT_DIAG=2 - -export D2_BG_K1=0.20 -export D2_BG_K2=0.04 -export PSM_BC=1 -export DDDMP=0.1 - -# Merra2 Aerosols & NSST -export USE_MERRA2=.true. -export IAER=1011 -export NSTF_NAME=2,1,0,0,0 - -export LHEATSTRG=.false. -export LSEASPRAY=.true. - -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - -# CA -export DO_CA=.true. -export CA_SGS=.true. -export CA_GLOBAL=.false. -export NCA=1 -export NCELLS=5 -export NLIVES=12 -export NTHRESH=18 -export NSEED=1 -export NFRACSEED=0.5 -export CA_TRIGGER=.true. -export NSPINUP=1 -export ISEED_CA=12345 - -export TILEDFIX=.true. -export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'INPUT/C96.facsf.tileX.nc'" -export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" -export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" -export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" -export FNSOCC="'INPUT/C96.soil_color.tileX.nc'" -export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" -export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'INPUT/C96.slope_type.tileX.nc'" -export FNABSC="'INPUT/C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - -export IMP_PHYSICS=8 -export LGFDLMPRAD=.false. -export DO_SAT_ADJ=.false. -export DNATS=0 -export DZ_MIN=6 - -#required for NML.IN sharing -export MIN_SEAICE=0.15 -export FRAC_GRID=.true. -export MOM6_OUTPUT_DIR=./MOM6_OUTPUT -export MOM6_RESTART_DIR=./RESTART/ -export MOM6_RESTART_SETTING=n -# Following not used for standalone -export USE_CICE_ALB=.false. - -export WRITE_NSFLIP=.true. - -export FV3_RUN="control_run.IN noahmp_run.IN" -export CCPP_SUITE=FV3_GFS_v17_p8 -export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=global_control.nml.IN -export V2_SFC_FILE=true - -# RRTMGP -export DO_RRTMGP=.false. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export DOGP_SGS_CNV=.true. - -export SATMEDMF=.true. +export FV3_RUN="noahmp_run.IN" export CPLLND=.true. export CPLLND2ATM=.true. @@ -222,6 +107,7 @@ export med_model=cmeps export atm_model=fv3 export lnd_model=noahmp export pio_rearranger=box +export samegrid_atmlnd=.true. export CPLMODE=ufs.frac export RUNTYPE=startup export READRESTART=.false. @@ -233,17 +119,21 @@ export lnd_ic_type=sfc export CALC_SNET=.false. export layout_x=3 export layout_y=8 +export OCNRES=100 export LNDRES=C96 export coupling_interval_sec=720 export snow_albedo_option=1 export precip_partition_option=4 export initial_albedo=0.2 +export WRITE_DOPOST=.false. +export OUTPUT_GRID=cubed_sphere_grid export OUTPUT_FH="1 -1" if [[ "$ATMRES" = "$LNDRES" ]]; then export lnd_input_dir="INPUT/" export mosaic_file="INPUT/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="./" else export lnd_input_dir="INPUT/${LNDRES}/" export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="INPUT/${LNDRES}/" fi -export MOM6_TOPOEDITS="" diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs deleted file mode 100644 index 56a3a888f8..0000000000 --- a/tests/tests/control_p8_atmlnd_sbs +++ /dev/null @@ -1,247 +0,0 @@ -############################################################################### -# -# Global control test GFSv16 atmosphere-land only at C96L127, P8 configuration -# -############################################################################### - -export TEST_DESCR="Compare global control results with previous trunk version" - -export CNTL_DIR=control_p8_atmlnd_sbs - -export LIST_FILES="sfcf000.tile1.nc \ - sfcf000.tile2.nc - sfcf000.tile3.nc - sfcf000.tile4.nc - sfcf000.tile5.nc - sfcf000.tile6.nc - sfcf012.tile1.nc \ - sfcf012.tile2.nc \ - sfcf012.tile3.nc \ - sfcf012.tile4.nc \ - sfcf012.tile5.nc \ - sfcf012.tile6.nc \ - sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf000.tile1.nc \ - atmf000.tile2.nc \ - atmf000.tile3.nc \ - atmf000.tile4.nc \ - atmf000.tile5.nc \ - atmf000.tile6.nc \ - atmf012.tile1.nc \ - atmf012.tile2.nc \ - atmf012.tile3.nc \ - atmf012.tile4.nc \ - atmf012.tile5.nc \ - atmf012.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.tile6.nc \ - RESTART/20210323.060000.ca_data.tile1.nc \ - RESTART/20210323.060000.ca_data.tile2.nc \ - RESTART/20210323.060000.ca_data.tile3.nc \ - RESTART/20210323.060000.ca_data.tile4.nc \ - RESTART/20210323.060000.ca_data.tile5.nc \ - RESTART/20210323.060000.ca_data.tile6.nc \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - RESTART/20210323.060000.fv_core.res.tile1.nc \ - RESTART/20210323.060000.fv_core.res.tile2.nc \ - RESTART/20210323.060000.fv_core.res.tile3.nc \ - RESTART/20210323.060000.fv_core.res.tile4.nc \ - RESTART/20210323.060000.fv_core.res.tile5.nc \ - RESTART/20210323.060000.fv_core.res.tile6.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210323.060000.fv_tracer.res.tile1.nc \ - RESTART/20210323.060000.fv_tracer.res.tile2.nc \ - RESTART/20210323.060000.fv_tracer.res.tile3.nc \ - RESTART/20210323.060000.fv_tracer.res.tile4.nc \ - RESTART/20210323.060000.fv_tracer.res.tile5.nc \ - RESTART/20210323.060000.fv_tracer.res.tile6.nc \ - RESTART/20210323.060000.phy_data.tile1.nc \ - RESTART/20210323.060000.phy_data.tile2.nc \ - RESTART/20210323.060000.phy_data.tile3.nc \ - RESTART/20210323.060000.phy_data.tile4.nc \ - RESTART/20210323.060000.phy_data.tile5.nc \ - RESTART/20210323.060000.phy_data.tile6.nc \ - RESTART/20210323.060000.sfc_data.tile1.nc \ - RESTART/20210323.060000.sfc_data.tile2.nc \ - RESTART/20210323.060000.sfc_data.tile3.nc \ - RESTART/20210323.060000.sfc_data.tile4.nc \ - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc \ - ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ - ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" - -export_fv3 -export_tiled -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='cubed_sphere_grid' -export WRITE_DOPOST=.false. -export OUTPUT_FH='0 21 24' - -export IALB=2 -export IEMS=2 -export LSM=2 -export IOPT_DVEG=4 -export IOPT_CRS=2 -export IOPT_RAD=3 -export IOPT_ALB=1 -export IOPT_STC=3 -export IOPT_SFC=3 -export IOPT_TRS=2 -export IOPT_DIAG=2 - -export D2_BG_K1=0.20 -export D2_BG_K2=0.04 -export PSM_BC=1 -export DDDMP=0.1 - -# Merra2 Aerosols & NSST -export USE_MERRA2=.true. -export IAER=1011 -export NSTF_NAME=2,1,0,0,0 - -export LHEATSTRG=.false. -export LSEASPRAY=.true. - -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - -# CA -export DO_CA=.true. -export CA_SGS=.true. -export CA_GLOBAL=.false. -export NCA=1 -export NCELLS=5 -export NLIVES=12 -export NTHRESH=18 -export NSEED=1 -export NFRACSEED=0.5 -export CA_TRIGGER=.true. -export NSPINUP=1 -export ISEED_CA=12345 - -export TILEDFIX=.true. -export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'INPUT/C96.facsf.tileX.nc'" -export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" -export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" -export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" -export FNSOCC="'INPUT/C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'INPUT/C96.slope_type.tileX.nc'" -export FNABSC="'INPUT/C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - -export IMP_PHYSICS=8 -export LGFDLMPRAD=.false. -export DO_SAT_ADJ=.false. -export DNATS=0 -export DZ_MIN=6 - -#required for NML.IN sharing -export MIN_SEAICE=0.15 -export FRAC_GRID=.true. -export MOM6_OUTPUT_DIR=./MOM6_OUTPUT -export MOM6_RESTART_DIR=./RESTART/ -export MOM6_RESTART_SETTING=n -# Following not used for standalone -export USE_CICE_ALB=.false. - -export WRITE_NSFLIP=.true. - -export FV3_RUN="control_run.IN noahmp_run.IN" -export CCPP_SUITE=FV3_GFS_v17_p8 -export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=global_control.nml.IN -export V2_SFC_FILE=true - -# RRTMGP -export DO_RRTMGP=.false. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export DOGP_SGS_CNV=.true. - -export SATMEDMF=.true. - -export CPLLND=.true. -export CPLLND2ATM=.false. - -export UFS_CONFIGURE=ufs.configure.atm_lnd.IN -export med_model=cmeps -export atm_model=fv3 -export lnd_model=noahmp -export pio_rearranger=box -export CPLMODE=ufs.frac -export RUNTYPE=startup -export READRESTART=.false. -export CMEPS_RESTART_DIR=./RESTART/ -export cap_dbug_flag=0 -export ATM_tasks=144 -export LND_tasks=144 -export lnd_ic_type=sfc -export CALC_SNET=.false. -export layout_x=3 -export layout_y=8 -export LNDRES=C96 -export coupling_interval_sec=720 -export snow_albedo_option=1 -export precip_partition_option=4 -export initial_albedo=0.2 -export OUTPUT_FH="1 -1" -if [[ "$ATMRES" = "$LNDRES" ]]; then - export lnd_input_dir="INPUT/" - export mosaic_file="INPUT/${LNDRES}_mosaic.nc" -else - export lnd_input_dir="INPUT/${LNDRES}/" - export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" -fi -export MOM6_TOPOEDITS="" diff --git a/tests/tests/control_restart_p8_atmlnd b/tests/tests/control_restart_p8_atmlnd index a52c955dbe..1bb6b85bb9 100644 --- a/tests/tests/control_restart_p8_atmlnd +++ b/tests/tests/control_restart_p8_atmlnd @@ -4,6 +4,8 @@ # ############################################################################### +source tests/control_restart_p8 + export TEST_DESCR="Compare global control results with previous trunk version" export CNTL_DIR=control_p8_atmlnd @@ -27,130 +29,9 @@ export LIST_FILES="sfcf024.tile1.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" -export_fv3 -export_tiled -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='cubed_sphere_grid' -export WRITE_DOPOST=.false. -export FHROT=12 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+${SHOUR})*3600 )))" - -export WARM_START=.true. -export NGGPS_IC=.false. -export EXTERNAL_IC=.false. -export MAKE_NH=.false. -export MOUNTAIN=.true. -export NA_INIT=0 - -export IALB=2 -export IEMS=2 -export LSM=2 -export IOPT_DVEG=4 -export IOPT_CRS=2 -export IOPT_RAD=3 -export IOPT_ALB=1 -export IOPT_STC=3 -export IOPT_SFC=3 -export IOPT_TRS=2 -export IOPT_DIAG=2 - -export D2_BG_K1=0.20 -export D2_BG_K2=0.04 -export PSM_BC=1 -export DDDMP=0.1 - -# Merra2 Aerosols & NSST -export USE_MERRA2=.true. -export IAER=1011 -export NSTF_NAME=2,0,0,0,0 - -export LHEATSTRG=.false. -export LSEASPRAY=.true. - -# UGWP1 -export GWD_OPT=2 -export DO_UGWP_V1=.false. -export KNOB_UGWP_VERSION=0 -export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.true. -export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.false. -export DO_UGWP_V1_OROG_ONLY=.false. -export DO_UGWP_V0_NST_ONLY=.false. -export LDIAG_UGWP=.false. - -# CA -export DO_CA=.true. -export CA_SGS=.true. -export CA_GLOBAL=.false. -export NCA=1 -export NCELLS=5 -export NLIVES=12 -export NTHRESH=18 -export NSEED=1 -export NFRACSEED=0.5 -export CA_TRIGGER=.true. -export NSPINUP=1 -export ISEED_CA=12345 - -export TILEDFIX=.true. -export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'INPUT/C96.facsf.tileX.nc'" -export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" -export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" -export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" -export FNSOCC="'INPUT/C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'INPUT/C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'INPUT/C96.slope_type.tileX.nc'" -export FNABSC="'INPUT/C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - -export IMP_PHYSICS=8 -export LGFDLMPRAD=.false. -export DO_SAT_ADJ=.false. -export DNATS=0 -export DZ_MIN=6 - -#required for NML.IN sharing -export MIN_SEAICE=0.15 -export FRAC_GRID=.true. -export MOM6_OUTPUT_DIR=./MOM6_OUTPUT -export MOM6_RESTART_DIR=./RESTART/ -export MOM6_RESTART_SETTING=n -# Following not used for standalone -export USE_CICE_ALB=.false. - -export WRITE_NSFLIP=.true. - -export FV3_RUN="control_run.IN noahmp_run.IN" -export CCPP_SUITE=FV3_GFS_v17_p8 -export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_cpld.IN -export INPUT_NML=global_control.nml.IN -export V2_SFC_FILE=true - -# RRTMGP -export DO_RRTMGP=.false. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export DOGP_SGS_CNV=.true. - -export SATMEDMF=.true. +export FV3_RUN="noahmp_run.IN" export CPLLND=.true. export CPLLND2ATM=.true. @@ -160,6 +41,7 @@ export med_model=cmeps export atm_model=fv3 export lnd_model=noahmp export pio_rearranger=box +export samegrid_atmlnd=.true. export CPLMODE=ufs.frac export RUNTYPE=continue export READRESTART=.true. @@ -171,17 +53,21 @@ export lnd_ic_type=sfc export CALC_SNET=.false. export layout_x=3 export layout_y=8 +export OCNRES=100 export LNDRES=C96 export coupling_interval_sec=720 export snow_albedo_option=1 export precip_partition_option=4 export initial_albedo=0.2 +export WRITE_DOPOST=.false. +export OUTPUT_GRID=cubed_sphere_grid export OUTPUT_FH="1 -1" if [[ "$ATMRES" = "$LNDRES" ]]; then export lnd_input_dir="INPUT/" export mosaic_file="INPUT/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="./" else export lnd_input_dir="INPUT/${LNDRES}/" export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="INPUT/${LNDRES}/" fi -export MOM6_TOPOEDITS="" diff --git a/tests/tests/cpld_control_p8_lnd b/tests/tests/cpld_control_p8_lnd new file mode 100644 index 0000000000..8cf35ee7f3 --- /dev/null +++ b/tests/tests/cpld_control_p8_lnd @@ -0,0 +1,104 @@ +# +# cpld_control P8 test with land component model +# + +source tests/cpld_control_p8 + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3-NOAHMP system - C96MX100" + +export CNTL_DIR=cpld_control_p8_lnd + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 \ + ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" + +export CPLLND=.true. +export CPLLND2ATM=.true. +export UFS_CONFIGURE=ufs.configure.s2swal_fast.IN +export lnd_model=noahmp +export LND_tasks=144 +export lnd_ic_type=sfc +export CALC_SNET=.false. +export layout_x=3 +export layout_y=8 +export LNDRES=C96 +export coupling_interval_sec=720 +export snow_albedo_option=1 +export precip_partition_option=4 +export initial_albedo=0.2 +if [[ "$ATMRES" = "$LNDRES" ]]; then + export lnd_input_dir="INPUT/" + export mosaic_file="INPUT/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="./" + export samegrid_atmlnd=.true. +else + export lnd_input_dir="INPUT/${LNDRES}/" + export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="INPUT/${LNDRES}/" + export samegrid_atmlnd=.false. +fi diff --git a/tests/tests/cpld_restart_p8_lnd b/tests/tests/cpld_restart_p8_lnd new file mode 100644 index 0000000000..dd6124e36f --- /dev/null +++ b/tests/tests/cpld_restart_p8_lnd @@ -0,0 +1,94 @@ +# +# cpld_restart P8 test with land component +# + +source tests/cpld_restart_p8 + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3-NOAHMP system - C96MX100" + +export CNTL_DIR=cpld_control_p8_lnd + +export LIST_FILES="sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 \ + ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" + +# LND warm start +export FV3_RUN="cpld_control_run.IN noahmp_run.IN" +export CPLLND=.true. +export CPLLND2ATM=.true. +export UFS_CONFIGURE=ufs.configure.s2swal_fast.IN +export lnd_model=noahmp +export LND_tasks=144 +export lnd_ic_type=sfc +export CALC_SNET=.false. +export layout_x=3 +export layout_y=8 +export LNDRES=C96 +export coupling_interval_sec=720 +export snow_albedo_option=1 +export precip_partition_option=4 +export initial_albedo=0.2 +if [[ "$ATMRES" = "$LNDRES" ]]; then + export lnd_input_dir="INPUT/" + export mosaic_file="INPUT/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="./" + export samegrid_atmlnd=.true. +else + export lnd_input_dir="INPUT/${LNDRES}/" + export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" + export lnd_fixed_dir="INPUT/${LNDRES}/" + export samegrid_atmlnd=.false. +fi diff --git a/tests/tests/datm_cdeps_lm4_gswp3 b/tests/tests/datm_cdeps_lm4_gswp3 index ea57b3b5c5..0f35fa733a 100644 --- a/tests/tests/datm_cdeps_lm4_gswp3 +++ b/tests/tests/datm_cdeps_lm4_gswp3 @@ -99,6 +99,7 @@ export UFS_CONFIGURE="ufs.configure.atm_lm4.IN" export med_model="cmeps" export atm_model="datm" export lnd_model="lm4" +export samegrid_atmlnd=.false. export CPLMODE=ufs.nfrac.aoflux export RUNTYPE="startup" export READRESTART=.false. @@ -117,4 +118,4 @@ export TOPOEDITS="" export FV3_RUN="lm4_run.IN" export DIAG_TABLE="diag_table_datm_lm4" export FIELD_TABLE_ADDITIONAL=field_table_lm4 -export INPUT_NML="input_datm_lm4.nml.IN" \ No newline at end of file +export INPUT_NML="input_datm_lm4.nml.IN" diff --git a/tests/tests/datm_cdeps_lm4_gswp3_rst b/tests/tests/datm_cdeps_lm4_gswp3_rst index efa4e6fcf4..780f9dc989 100644 --- a/tests/tests/datm_cdeps_lm4_gswp3_rst +++ b/tests/tests/datm_cdeps_lm4_gswp3_rst @@ -100,6 +100,7 @@ export UFS_CONFIGURE="ufs.configure.atm_lm4.IN" export med_model="cmeps" export atm_model="datm" export lnd_model="lm4" +export samegrid_atmlnd=.false. export CPLMODE=ufs.nfrac.aoflux export RUNTYPE="continue" export READRESTART=.false. @@ -123,4 +124,4 @@ export LM4_RESTART_PREFIX=${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT}+ export FV3_RUN="lm4_run.IN" export DIAG_TABLE="diag_table_datm_lm4" export INPUT_NML="input_datm_lm4.nml.IN" -export FIELD_TABLE_ADDITIONAL=field_table_lm4 \ No newline at end of file +export FIELD_TABLE_ADDITIONAL=field_table_lm4 diff --git a/tests/tests/datm_cdeps_lnd_era5 b/tests/tests/datm_cdeps_lnd_era5 index 5e889fff1f..dcb3586256 100644 --- a/tests/tests/datm_cdeps_lnd_era5 +++ b/tests/tests/datm_cdeps_lnd_era5 @@ -38,6 +38,7 @@ export UFS_CONFIGURE=ufs.configure.atm_lnd.IN export med_model=cmeps export atm_model=datm export lnd_model=noahmp +export samegrid_atmlnd=.false. export CPLMODE=ufs.nfrac.aoflux export RUNTYPE=startup export READRESTART=.false. @@ -46,10 +47,12 @@ export ATM_compute_tasks=144 export LND_tasks=144 export lnd_ic_type='custom' export lnd_input_dir='INPUT/' +export lnd_fixed_dir='INPUT/' export CALC_SNET=.true. export layout_x=3 export layout_y=8 export LNDRES=C96 +export ATMRES=$LNDRES export mosaic_file="INPUT/${LNDRES}_mosaic.nc" export coupling_interval_sec=3600 export snow_albedo_option=2 diff --git a/tests/tests/datm_cdeps_lnd_era5_rst b/tests/tests/datm_cdeps_lnd_era5_rst index 70e6c4c5e3..4199a80a80 100644 --- a/tests/tests/datm_cdeps_lnd_era5_rst +++ b/tests/tests/datm_cdeps_lnd_era5_rst @@ -39,6 +39,7 @@ export UFS_CONFIGURE=ufs.configure.atm_lnd.IN export med_model=cmeps export atm_model=datm export lnd_model=noahmp +export samegrid_atmlnd=.false. export CPLMODE=ufs.nfrac.aoflux export RUNTYPE=continue export READRESTART=.false. @@ -47,10 +48,12 @@ export ATM_compute_tasks=144 export LND_tasks=144 export lnd_ic_type='custom' export lnd_input_dir='INPUT/' +export lnd_fixed_dir='INPUT/' export CALC_SNET=.true. export layout_x=3 export layout_y=8 export LNDRES=C96 +export ATMRES=$LNDRES export mosaic_file="INPUT/${LNDRES}_mosaic.nc" export coupling_interval_sec=3600 export snow_albedo_option=2 diff --git a/tests/tests/datm_cdeps_lnd_gswp3 b/tests/tests/datm_cdeps_lnd_gswp3 index 5905ef145a..fa4bd905d4 100644 --- a/tests/tests/datm_cdeps_lnd_gswp3 +++ b/tests/tests/datm_cdeps_lnd_gswp3 @@ -41,6 +41,7 @@ export UFS_CONFIGURE=ufs.configure.atm_lnd.IN export med_model=cmeps export atm_model=datm export lnd_model=noahmp +export samegrid_atmlnd=.false. export CPLMODE=ufs.nfrac.aoflux export RUNTYPE=startup export READRESTART=.false. @@ -50,10 +51,12 @@ export ICE_tasks=0 export LND_tasks=144 export lnd_ic_type='custom' export lnd_input_dir='INPUT/' +export lnd_fixed_dir='INPUT/' export CALC_SNET=.true. export layout_x=3 export layout_y=8 export LNDRES=C96 +export ATMRES=$LNDRES export mosaic_file="INPUT/${LNDRES}_mosaic.nc" export coupling_interval_sec=3600 export snow_albedo_option=1 @@ -61,4 +64,3 @@ export precip_partition_option=4 export initial_albedo=0.25 export TOPOEDITS="" export FV3_RUN="lnd_datm_cdeps_gswp.IN noahmp_run.IN" -