diff --git a/.gitignore b/.gitignore index 0239ee9a5a..bf7d81b1c6 100644 --- a/.gitignore +++ b/.gitignore @@ -73,3 +73,8 @@ tests/fv3_conf/compile_qsub.IN tests/fv3_conf/fv3_slurm.IN tests/fv3_conf/fv3_qsub.IN build*.log* +rocoto_workflow* +fail_compile_* +fail_test_* +tests/run_dir +tests/logs/log_* diff --git a/FV3 b/FV3 index 1fb1196d17..927261d391 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1fb1196d17366d2a8f28072b961f407d15edfb17 +Subproject commit 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index ec38ea3d90..3ac32f0db7 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit ec38ea3d902644cd4519d5fe060316859ccdc108 +Subproject commit 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index 90efd3211e..9e47095cca 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -8,7 +8,7 @@ alabaster==0.7.16 # via sphinx babel==2.14.0 # via sphinx -certifi==2024.2.2 +certifi==2024.7.4 # via requests charset-normalizer==3.3.2 # via requests diff --git a/modulefiles/ufs_frontera.intel.lua b/modulefiles/ufs_frontera.intel.lua new file mode 100644 index 0000000000..fd62e79d30 --- /dev/null +++ b/modulefiles/ufs_frontera.intel.lua @@ -0,0 +1,33 @@ +help([[ +loads UFS Model prerequisites for Frontera/Intel +]]) + +prepend_path("MODULEPATH", "/work2/06146/tg854455/frontera/spack-stack/modulefiles") +load("ecflow/5.8.4") + +prepend_path("MODULEPATH", "/work2/01118/tg803972/frontera/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "19.1.1.217" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2020.4.304" +load(pathJoin("stack-intel-mpi", stack_impi_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.24.2" +load(pathJoin("cmake", cmake_ver)) +--load("cmake/3.24.2") + +load("ufs_common") + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "frontera.intel") + +whatis("Description: UFS build environment") diff --git a/tests/bl_date.conf b/tests/bl_date.conf index a71d6e6148..dcd06eace9 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240614 +export BL_DATE=20240722 diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined index 9628cae560..e0b86d6bea 100644 --- a/tests/ci/Jenkinsfile.combined +++ b/tests/ci/Jenkinsfile.combined @@ -326,7 +326,7 @@ def generateStage(nodeLabel) { GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) - curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://github.com/gitapi/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels -d '{"labels":["$machine-.*RT|$machine-.*BL"]}' + curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://github.com/gitapi/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/{$machine-RT,$machine-BL} ''' s3Upload consoleLogLevel: 'INFO', dontSetBuildResultOnFailure: false, dontWaitForConcurrentBuildCompletion: false, entries: [[bucket: 'noaa-epic-prod-jenkins-artifacts', excludedFile: '', flatten: true, gzipFiles: false, keepForever: false, managedArtifacts: true, noUploadOnFailure: false, selectedRegion: 'us-east-1', showDirectlyInBrowser: false, sourceFile: "**/*tgz*", storageClass: 'STANDARD', uploadFromSlave: false, useServerSideEncryption: false]], pluginFailureResultConstraint: 'FAILURE', profileName: 'main', userMetadata: [] currentBuild.result = 'FAILURE' diff --git a/tests/ci/Jenkinsfile.ort b/tests/ci/Jenkinsfile.ort new file mode 100644 index 0000000000..53e0a8823d --- /dev/null +++ b/tests/ci/Jenkinsfile.ort @@ -0,0 +1,107 @@ +pipeline { + agent none + stages { + stage('Run ORTs') { + agent { + label 'built-in' + } + steps { + script { + for (label in pullRequest.labels) { + if ((label.matches("orion"))) { + env.CHOICE_NODE='orion' + } + else if ((label.matches("hera"))) { + env.CHOICE_NODE='hera' + } + else if ((label.matches("hercules"))) { + env.CHOICE_NODE='hercules' + } + else if ((label.matches("jet"))) { + env.CHOICE_NODE='jet' + } + else { + env.CHOICE_NODE='none' + } + } +// Why do I need another if..block, because it just works this way. + + if (CHOICE_NODE == 'orion') { + echo "Starting up orion ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + + } + else if (CHOICE_NODE == 'jet') { + echo "Starting up jet ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + } + else if (CHOICE_NODE == 'hercules') { + echo "Starting up hera ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + } + else if (CHOICE_NODE == 'hera') { + echo "Starting up hera ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + } + else { + echo "${CHOICE_NODE} is NOT a platform, moving on..." + } + } + } + } + stage('Run ORT on Hera') { + agent { + label "hera" + } + environment { + ACCNR = 'epic' + NODE_PATH = '/scratch2/NAGAPE/epic/role.epic/' + } + steps { + + cleanWs() + checkout scm + sh ''' + git submodule update --init --recursive + cd tests/fv3_conf + sed 's/#SBATCH --time=.*/#SBATCH --time=02:00:00/g' -i fv3_slurm.IN_hera + cd .. + export machine=${NODE_NAME} + export PATH=$PATH:~/bin + echo $CHANGE_ID + export SSH_ORIGIN=$(curl --silent https://github.com/gitapi/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url') + export FORK_BRANCH=$(curl --silent https://github.com/gitapi/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.ref') + pwd + sed "s|intel|gnu|g" -i opnReqTest + export ACCNR=epic + ./opnReqTest -n regional_control -a ${ACCNR} -c bit,dcp,thr + cd logs/ + cp OpnReqTests_regional_control_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + cd .. + ./opnReqTest -n cpld_control_nowave_noaero_p8 -a ${ACCNR} -c dbg,rst + cd logs/ + cp OpnReqTests_cpld_control_nowave_noaero_p8_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + cd .. + ./opnReqTest -n control_p8 -a ${ACCNR} -c std,dbg,bit,mpi,rst,thr,dcp + cd logs/ + cp OpnReqTests_control_p8_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp OpnReqTests_control_p8_hera.log $WORKSPACE/tests/logs/ + cp OpnReqTests_regional_control_hera.log $WORKSPACE/tests/logs/ + cp OpnReqTests_cpld_control_nowave_noaero_p8_hera.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + echo "Testing concluded...removing labels for $machine from $GIT_URL" + + export machine_name_logs=$(echo $machine | awk '{ print tolower($1) }') + git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 + git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 + git add logs/OpnReqTests_control_p8_hera.log logs/OpnReqTests_regional_control_hera.log logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log + git commit -m "ORT Jobs Completed.\n\n\n on-behalf-of @ufs-community " + git pull sshorigin $FORK_BRANCH + git push sshorigin HEAD:$FORK_BRANCH + ''' + } + } + } +} diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 552bac9e0d..7752efd443 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -624,6 +624,8 @@ export DO_UGWP_V1_W_GSLDRAG=.false. export DO_UGWP_V0_OROG_ONLY=.false. export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. +export DO_GWD_OPT_PSL=.false. +export PSL_GWD_DX_FACTOR=6.0 export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1=.false. export DO_UGWP_V1_OROG_ONLY=.false. diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 29f51285ca..0bd0535d8a 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -48,6 +48,9 @@ case $(hostname -f) in 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 diff --git a/tests/error-test.conf b/tests/error-test.conf new file mode 100644 index 0000000000..2382c59a9e --- /dev/null +++ b/tests/error-test.conf @@ -0,0 +1,27 @@ +# This file is an alternative to rt.conf that tests whether the regression test system rt.sh can detect failure conditions. +# +# ./rt.sh [options] -l error-test.conf +# +# If the rt.sh detects errors correctly, the workflow shouldn't finish. Some jobs should be failed or not submitted, and some should succeed. +# See details below. + +# This should succeed +COMPILE | atm_dyn32 | intel | -DAPP=ATM -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 | + +# This should succeed +RUN | control_c48.v2.sfc | | baseline | + +# These tests should always fail, and prevent the workflow from completing. +RUN | fail_to_copy | | baseline | +RUN | fail_to_run | | baseline | + +# Using 64-bit dynamics ensures results change, but the test runs. The workflow jobs should complete +# for the COMPILE and RUN, but the results should change. +COMPILE | atm_dyn64 | intel | -DAPP=ATM -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 | | fv3 | +RUN | control_c48 | | baseline | + +# This compile job should fail, and prevent the workflow from completing. +COMPILE | fail_to_compile | intel | --invalid-argument -DAPP=ATM -DCCPP_SUITES=whatever | | fv3 | + +# This test should not be submitted, because its compile job has failed. +RUN | dependency_unmet | | baseline | diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index e228fd2ad0..32eb089d7d 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -23,7 +23,7 @@ if [ $WARM_START = .false. ]; then elif [ "$V2_SFC_FILE" = "true" ]; then cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_v2_sfc/* ./INPUT/. else - cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/* ./INPUT/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/* ./INPUT/. fi else mkdir INPUT RESTART diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index ec731d9f4a..816516d7a0 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -183,8 +183,8 @@ if [ $IAER = 1011 ]; then fi cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ls* ./INPUT -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ss* ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_gfsv17/oro_data_ls* ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_gfsv17/oro_data_ss* ./INPUT if [ $IMP_PHYSICS = 8 ]; then cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN CCN_ACTIVATE.BIN diff --git a/tests/fv3_conf/fv3_qsub.IN_acorn b/tests/fv3_conf/fv3_qsub.IN_acorn index db6b3f1d12..b3d0102328 100644 --- a/tests/fv3_conf/fv3_qsub.IN_acorn +++ b/tests/fv3_conf/fv3_qsub.IN_acorn @@ -30,6 +30,13 @@ export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +# 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 + mpiexec -n @[TASKS] -ppn @[TPN] -depth @[THRD] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_qsub.IN_derecho b/tests/fv3_conf/fv3_qsub.IN_derecho index 8793d7edb5..5e5c0ac521 100644 --- a/tests/fv3_conf/fv3_qsub.IN_derecho +++ b/tests/fv3_conf/fv3_qsub.IN_derecho @@ -35,6 +35,13 @@ export MPICH_COLL_OPT_OFF=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 + mpiexec -n @[UFS_TASKS] -ppn @[PPN] --hostfile $PBS_NODEFILE ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index db6b3f1d12..b3d0102328 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -30,6 +30,13 @@ export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +# 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 + mpiexec -n @[TASKS] -ppn @[TPN] -depth @[THRD] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_expanse b/tests/fv3_conf/fv3_slurm.IN_expanse index 1dbc6bcbb5..6c4819806a 100644 --- a/tests/fv3_conf/fv3_slurm.IN_expanse +++ b/tests/fv3_conf/fv3_slurm.IN_expanse @@ -26,6 +26,14 @@ 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` diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index 8545e689e6..ad2459efba 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -32,6 +32,13 @@ export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index 288b0ec78b..a59dcdd9a2 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -38,6 +38,13 @@ export PSM_SHAREDCONTEXTS=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 + # shellcheck disable=SC2102 srun --label -n @[TASKS] ./fv3.exe diff --git a/tests/fv3_conf/fv3_slurm.IN_hercules b/tests/fv3_conf/fv3_slurm.IN_hercules index c4853fb585..36583d3fa5 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hercules +++ b/tests/fv3_conf/fv3_slurm.IN_hercules @@ -46,6 +46,13 @@ fi # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index 21effeb05e..e2cd86c5fa 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -36,6 +36,13 @@ export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] --cpus-per-task=@[THRD] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_noaacloud b/tests/fv3_conf/fv3_slurm.IN_noaacloud index 519e29b96a..a85e084160 100644 --- a/tests/fv3_conf/fv3_slurm.IN_noaacloud +++ b/tests/fv3_conf/fv3_slurm.IN_noaacloud @@ -39,6 +39,13 @@ export OMP_NUM_THREADS=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 + srun --mpi=pmi2 --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index 50e8cf5655..6221286a5f 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -39,6 +39,13 @@ export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_s4 b/tests/fv3_conf/fv3_slurm.IN_s4 index f3f9730604..aa22694fcd 100644 --- a/tests/fv3_conf/fv3_slurm.IN_s4 +++ b/tests/fv3_conf/fv3_slurm.IN_s4 @@ -35,6 +35,13 @@ export PSM_SHAREDCONTEXTS=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 + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede index 384cc778f0..d80a3e068c 100644 --- a/tests/fv3_conf/fv3_slurm.IN_stampede +++ b/tests/fv3_conf/fv3_slurm.IN_stampede @@ -29,6 +29,13 @@ 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 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 0e3c75adcf..72195a564d 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Jun 28 12:40:12 UTC 2024 +Mon Jul 22 20:34:33 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_960194/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 278.149410 - 0: The maximum resident set size (KB) = 1448036 + 0: The total amount of wall time = 290.687493 + 0: The maximum resident set size (KB) = 1455104 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_960194/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 978.713008 - 0: The maximum resident set size (KB) = 1435680 + 0: The total amount of wall time = 991.650717 + 0: The maximum resident set size (KB) = 1439732 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_960194/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 249.442600 - 0: The maximum resident set size (KB) = 1424744 + 0: The total amount of wall time = 255.224911 + 0: The maximum resident set size (KB) = 1430828 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_960194/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 251.855654 - 0: The maximum resident set size (KB) = 1430024 + 0: The total amount of wall time = 252.620393 + 0: The maximum resident set size (KB) = 1433224 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_960194/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 251.841071 - 0: The maximum resident set size (KB) = 1423276 + 0: The total amount of wall time = 262.750592 + 0: The maximum resident set size (KB) = 1435888 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_960194/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 254.210275 - 0: The maximum resident set size (KB) = 1432268 + 0: The total amount of wall time = 252.883306 + 0: The maximum resident set size (KB) = 1432108 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_960194/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 248.567157 - 0: The maximum resident set size (KB) = 1424576 + 0: The total amount of wall time = 257.944152 + 0: The maximum resident set size (KB) = 1433316 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jun 28 13:51:40 UTC 2024 -Elapsed time: 01h:11m:29s. Have a nice day! +Mon Jul 22 21:47:03 UTC 2024 +Elapsed time: 01h:12m:31s. 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 62f6e54a40..73884b41fa 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 @@ -Fri Jun 28 17:30:42 UTC 2024 +Mon Jul 22 19:01:08 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2363776/dbg_base_dbg_base +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_1231766/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,81 +66,83 @@ 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 = 1496.627004 - 0: The maximum resident set size (KB) = 1526796 + 0: The total amount of wall time = 1574.601495 + 0: The maximum resident set size (KB) = 1510852 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2363776/rst_rst +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_1231766/rst_rst Checking test rst results .... - Comparing sfcf021.tile1.nc ............MISSING file - Comparing sfcf021.tile2.nc ............MISSING file - Comparing sfcf021.tile3.nc ............MISSING file - Comparing sfcf021.tile4.nc ............MISSING file - Comparing sfcf021.tile5.nc ............MISSING file - Comparing sfcf021.tile6.nc ............MISSING file - Comparing atmf021.tile1.nc ............MISSING file - Comparing atmf021.tile2.nc ............MISSING file - Comparing atmf021.tile3.nc ............MISSING file - Comparing atmf021.tile4.nc ............MISSING file - Comparing atmf021.tile5.nc ............MISSING file - Comparing atmf021.tile6.nc ............MISSING file - Comparing sfcf024.tile1.nc ............MISSING file - Comparing sfcf024.tile2.nc ............MISSING file - Comparing sfcf024.tile3.nc ............MISSING file - Comparing sfcf024.tile4.nc ............MISSING file - Comparing sfcf024.tile5.nc ............MISSING file - Comparing sfcf024.tile6.nc ............MISSING file - Comparing atmf024.tile1.nc ............MISSING file - Comparing atmf024.tile2.nc ............MISSING file - Comparing atmf024.tile3.nc ............MISSING file - Comparing atmf024.tile4.nc ............MISSING file - Comparing atmf024.tile5.nc ............MISSING file - Comparing atmf024.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.coupler.res ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING file - Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING file - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING file + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK + 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 = 435.767884 + 0: The maximum resident set size (KB) = 1538868 -Test rst FAIL +Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2363776/std_base_std_base +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_1231766/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -203,88 +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 = 539.384472 - 0: The maximum resident set size (KB) = 1525632 + 0: The total amount of wall time = 435.149030 + 0: The maximum resident set size (KB) = 1523140 Test std_base PASS -FAILED TESTS: -Test rst failed in check_result failed -OPERATION REQUIREMENT TEST FAILED -Fri Jun 28 20:34:15 UTC 2024 -Elapsed time: 03h:03m:34s. Have a nice day! -Sat Jun 29 15:29:53 UTC 2024 -Start Operation Requirement Test - - -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1712965/rst_rst -Checking test rst results .... - Comparing sfcf021.tile1.nc .....USING NCCMP......OK - Comparing sfcf021.tile2.nc .....USING NCCMP......OK - Comparing sfcf021.tile3.nc .....USING NCCMP......OK - Comparing sfcf021.tile4.nc .....USING NCCMP......OK - Comparing sfcf021.tile5.nc .....USING NCCMP......OK - Comparing sfcf021.tile6.nc .....USING NCCMP......OK - Comparing atmf021.tile1.nc .....USING NCCMP......OK - Comparing atmf021.tile2.nc .....USING NCCMP......OK - Comparing atmf021.tile3.nc .....USING NCCMP......OK - Comparing atmf021.tile4.nc .....USING NCCMP......OK - Comparing atmf021.tile5.nc .....USING NCCMP......OK - Comparing atmf021.tile6.nc .....USING NCCMP......OK - Comparing sfcf024.tile1.nc .....USING NCCMP......OK - Comparing sfcf024.tile2.nc .....USING NCCMP......OK - Comparing sfcf024.tile3.nc .....USING NCCMP......OK - Comparing sfcf024.tile4.nc .....USING NCCMP......OK - Comparing sfcf024.tile5.nc .....USING NCCMP......OK - Comparing sfcf024.tile6.nc .....USING NCCMP......OK - Comparing atmf024.tile1.nc .....USING NCCMP......OK - Comparing atmf024.tile2.nc .....USING NCCMP......OK - Comparing atmf024.tile3.nc .....USING NCCMP......OK - Comparing atmf024.tile4.nc .....USING NCCMP......OK - Comparing atmf024.tile5.nc .....USING NCCMP......OK - Comparing atmf024.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK - 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 = 432.940225 - 0: The maximum resident set size (KB) = 1529388 - -Test rst PASS - OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sat Jun 29 16:08:32 UTC 2024 -Elapsed time: 00h:38m:40s. Have a nice day! +Mon Jul 22 20:34:32 UTC 2024 +Elapsed time: 01h:33m:24s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 32729d9d08..a85adfdae1 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Jun 28 14:38:45 UTC 2024 +Mon Jul 22 16:30:51 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2419427/bit_base_bit_base +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_2519577/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 = 1446.613033 - 0: The maximum resident set size (KB) = 758248 + 0: The total amount of wall time = 1397.064435 + 0: The maximum resident set size (KB) = 762344 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2419427/dcp_dcp +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_2519577/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 = 2236.224094 - 0: The maximum resident set size (KB) = 713588 + 0: The total amount of wall time = 2174.865742 + 0: The maximum resident set size (KB) = 709236 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2419427/std_base_std_base +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_2519577/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 = 2177.182992 - 0: The maximum resident set size (KB) = 711572 + 0: The total amount of wall time = 2179.697019 + 0: The maximum resident set size (KB) = 717568 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2419427/thr_thr +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_2519577/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 = 2172.759223 - 0: The maximum resident set size (KB) = 707672 + 0: The total amount of wall time = 2239.474214 + 0: The maximum resident set size (KB) = 705128 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jun 28 17:13:31 UTC 2024 -Elapsed time: 02h:34m:47s. Have a nice day! +Mon Jul 22 19:01:08 UTC 2024 +Elapsed time: 02h:30m:17s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 6d8f65ab3b..301236ca75 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -552f487a2333cfd64aa1fcbdebc380f9158b9e52 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) - 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,285 +35,354 @@ 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-20240614 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_86571 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_70873 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:16, 21:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:03, 05:41](3197 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:21, 23:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:16, 14:19](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:04, 15:16](1929 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:49, 07:29](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:51, 16:33](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:21, 23:37] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:28, 14:16](1917 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:17, 12:12] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [22:19, 21:35] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:37, 06:24](3222 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:29, 06:19](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:28, 03:58](3154 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:37, 06:18](3253 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 03:43](3185 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:21, 06:02](3721 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:21, 06:04](3214 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:18, 05:21](3532 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 06:05](3230 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:09, 09:36](3807 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:28, 06:32](3618 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:03, 10:36](4495 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:18, 06:58](4655 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:08, 06:06](3204 MB) - -PASS -- COMPILE 's2sw_intel' [21:16, 19:55] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:25, 04:50](1930 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:43, 05:02](1985 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:17, 12:11] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:03, 08:24](3285 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:16, 11:24] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 05:56](1948 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:18, 16:03] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:42, 04:49](1996 MB) - -PASS -- COMPILE 's2s_intel' [17:18, 15:51] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:08, 06:58](2926 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:04, 02:22](2935 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:28, 01:30](2321 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:27, 26:08] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:41, 06:10](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:25, 22:11] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:54, 14:24](1934 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:24, 07:34](1092 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:56, 16:26](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:19, 10:25] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:42, 23:39](1949 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:18, 15:17] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:36, 03:27](667 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:07, 02:26](1568 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:18, 02:26](1570 MB) -PASS -- TEST 'control_latlon_intel' [04:06, 02:25](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:09, 02:28](1562 MB) -PASS -- TEST 'control_c48_intel' [08:08, 06:12](1618 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 05:15](732 MB) -PASS -- TEST 'control_c192_intel' [11:43, 08:42](1687 MB) -PASS -- TEST 'control_c384_intel' [14:56, 08:42](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [15:40, 07:01](1199 MB) -PASS -- TEST 'control_stochy_intel' [02:39, 01:24](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:49, 00:59](437 MB) -PASS -- TEST 'control_lndp_intel' [03:28, 01:21](625 MB) -PASS -- TEST 'control_iovr4_intel' [03:42, 02:03](622 MB) -PASS -- TEST 'control_iovr5_intel' [03:42, 02:03](620 MB) -PASS -- TEST 'control_p8_intel' [05:24, 03:09](1871 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:41, 03:07](1864 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:52, 03:03](1871 MB) -PASS -- TEST 'control_restart_p8_intel' [03:13, 01:33](1015 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:44, 03:00](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:14, 01:36](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:41, 03:12](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:40, 03:03](1948 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:29, 04:39](1863 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:41, 03:38](1925 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:48, 03:06](1867 MB) -PASS -- TEST 'merra2_thompson_intel' [05:50, 03:17](1869 MB) -PASS -- TEST 'regional_control_intel' [07:13, 04:50](871 MB) -PASS -- TEST 'regional_restart_intel' [04:47, 02:49](877 MB) -PASS -- TEST 'regional_decomp_intel' [07:11, 04:56](874 MB) -PASS -- TEST 'regional_noquilt_intel' [05:59, 04:35](1196 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:55, 04:49](864 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:52, 04:45](873 MB) -PASS -- TEST 'regional_wofs_intel' [06:48, 05:35](1606 MB) - -PASS -- COMPILE 'rrfs_intel' [14:15, 13:13] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:22, 06:05](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:30, 03:50](1185 MB) -PASS -- TEST 'rap_decomp_intel' [08:21, 06:21](1005 MB) -PASS -- TEST 'rap_2threads_intel' [08:21, 05:37](1099 MB) -PASS -- TEST 'rap_restart_intel' [05:14, 03:10](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:26, 06:05](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:34, 06:21](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 04:33](879 MB) -PASS -- TEST 'hrrr_control_intel' [05:14, 03:11](1004 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:14, 03:17](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:14, 02:47](1089 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 01:43](837 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:25, 06:00](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:04, 07:25](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:01, 07:11](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [12:16, 11:11] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:06, 06:30](967 MB) -PASS -- TEST 'control_ras_intel' [04:41, 02:53](660 MB) - -PASS -- COMPILE 'wam_intel' [12:14, 10:52] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:02, 09:54](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:19, 17:05] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:33, 02:34](1869 MB) -PASS -- TEST 'regional_control_faster_intel' [06:00, 04:30](878 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:14, 12:32] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 02:28](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:59, 02:28](1597 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:33, 02:50](798 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:34, 02:34](799 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:57, 04:34](1110 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:35](801 MB) -PASS -- TEST 'control_diag_debug_intel' [04:43, 02:33](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [04:53, 03:08](1894 MB) -PASS -- TEST 'regional_debug_intel' [17:54, 16:18](926 MB) -PASS -- TEST 'rap_control_debug_intel' [06:29, 04:39](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:31](1175 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:35, 04:36](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:33, 04:43](1181 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:28, 04:43](1183 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:43, 04:52](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:34, 04:46](1181 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:36, 04:52](1180 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:36, 04:38](1177 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:40, 04:39](1178 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:33, 04:31](1177 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:37, 04:36](1180 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:28](1178 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:29, 04:33](1172 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:31, 05:49](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:31, 04:39](1181 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:09, 07:53](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 06:41] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:06, 12:12](1691 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:15, 11:03] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:20, 03:28](1058 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:57, 05:05](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:13, 02:45](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:07, 04:45](943 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:53, 02:24](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:50, 02:55](877 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:58, 03:50](795 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:36, 01:31](774 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:22, 12:55] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:27, 01:49](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:20, 00:54](1079 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:17, 01:07](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 10:46] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:02, 03:34](915 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:19, 06:40] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:36, 04:29](1061 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:31, 04:28](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [15:38, 13:16](1140 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:01, 13:26](827 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:20, 07:44](1142 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 13:26](1207 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:13, 06:50] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:32, 04:31](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [19:23, 18:01] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:33, 04:24](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:44, 04:57](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:57, 06:20](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [12:50, 10:47](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:16, 12:03](812 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:03, 04:43](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 05:46](493 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:56, 02:15](393 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 06:09](462 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:03, 03:18](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:29, 03:02](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:29, 03:53](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:12](430 MB) -PASS -- TEST 'gnv1_nested_intel' [07:07, 04:02](1720 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:13, 08:22] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:07, 12:08](617 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:30, 26:37] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:39, 07:09](631 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:37, 07:15](684 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 18:59] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:27, 05:21](680 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:20, 15:22] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:26, 05:31](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:41, 05:38](738 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:30, 16:14](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:20, 08:29] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:46, 02:30](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:47, 01:30](751 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:41, 02:22](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:44, 02:25](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:38, 02:24](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:28, 02:28](751 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:34, 02:34](751 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:34, 02:20](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:34, 05:39](699 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:27, 05:37](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:27](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:44, 03:51](2021 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:10, 03:51](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:19, 06:00] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:37, 05:09](734 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:09] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:40, 02:27](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:17, 02:55] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:42, 01:03](312 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:32, 00:59](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:40, 00:54](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:23, 13:05] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:03, 04:06](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:18, 12:11] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:46, 03:52](1899 MB) - -PASS -- COMPILE 'atml_intel' [16:13, 15:01] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:03, 07:10](1888 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:04, 07:24](1888 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 03:44](1037 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:18, 09:50] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:56, 06:37](1921 MB) - -PASS -- COMPILE 'atmw_intel' [14:21, 13:27] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:38, 02:25](1888 MB) - -PASS -- COMPILE 'atmaero_intel' [13:22, 12:00] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:58, 04:23](3123 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:20](2999 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:28, 04:25](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:14, 07:07] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:50, 21:53](4530 MB) +PASS -- COMPILE 's2swa_32bit_intel' [25:18, 21:53] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 05:31](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:20, 23:50] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:59, 14:42](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 15:50](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 07:53](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:36, 16:25](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:17, 23:56] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:52, 14:22](1918 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [27:32, 11:57] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [37:34, 21:25] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:26, 06:02](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:29, 06:10](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:14, 03:51](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:24, 06:15](3253 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:11](3184 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:08, 05:54](3730 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:08, 06:17](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:02, 05:06](3539 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:13, 06:15](3235 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_c192_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:40, 10:29](4519 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:43, 06:57](4665 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:49, 05:46](3210 MB) + +PASS -- COMPILE 's2sw_intel' [30:20, 19:56] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:58](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:47, 04:56](1992 MB) + +PASS -- COMPILE 's2swa_debug_intel' [27:33, 11:36] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:15, 08:10](3303 MB) + +PASS -- COMPILE 's2sw_debug_intel' [27:33, 11:08] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:39, 05:51](1955 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [31:34, 15:43] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:25, 04:52](1987 MB) + +PASS -- COMPILE 's2s_intel' [19:16, 16:00] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [03:25, 06:47](2941 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [19:13, 02:21](2947 MB) +PASS -- TEST 'cpld_restart_c48_intel' [39:21, 01:38](2343 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:32, 25:55] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:07, 06:07](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 22:11] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:40, 14:36](1943 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:09, 07:48](1110 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:40, 16:41](1907 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [01:27, 11:10] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:33, 23:42](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [03:23, 15:14] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:37, 03:24](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:25](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:28](1571 MB) +PASS -- TEST 'control_latlon_intel' [04:15, 02:24](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:26](1562 MB) +PASS -- TEST 'control_c48_intel' [08:19, 06:05](1619 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:43, 05:17](734 MB) +PASS -- TEST 'control_c192_intel' [11:59, 08:44](1687 MB) +PASS -- TEST 'control_c384_intel' [14:08, 08:45](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [12:54, 07:07](1197 MB) +PASS -- TEST 'control_stochy_intel' [02:34, 01:26](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 00:53](435 MB) +PASS -- TEST 'control_lndp_intel' [02:34, 01:22](626 MB) +PASS -- TEST 'control_iovr4_intel' [03:38, 02:09](621 MB) +PASS -- TEST 'control_iovr5_intel' [03:38, 02:08](622 MB) +PASS -- TEST 'control_p8_intel' [05:21, 03:09](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:28, 03:10](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:28, 03:01](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [04:18, 02:14](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:31, 03:10](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:58](1020 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:12, 03:08](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:05](1956 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:14, 05:00](1863 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:17, 04:01](1926 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:35, 03:09](1873 MB) +PASS -- TEST 'merra2_thompson_intel' [05:25, 03:26](1870 MB) +PASS -- TEST 'regional_control_intel' [06:55, 04:58](869 MB) +PASS -- TEST 'regional_restart_intel' [04:54, 02:57](876 MB) +PASS -- TEST 'regional_decomp_intel' [06:48, 05:10](872 MB) +PASS -- TEST 'regional_noquilt_intel' [06:53, 04:55](1189 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 04:56](872 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:56, 05:02](872 MB) +PASS -- TEST 'regional_wofs_intel' [07:59, 05:41](1604 MB) + +PASS -- COMPILE 'rrfs_intel' [59:23, 13:03] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:10, 06:09](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 03:41](1193 MB) +PASS -- TEST 'rap_decomp_intel' [08:10, 06:25](1005 MB) +PASS -- TEST 'rap_2threads_intel' [08:10, 05:39](1097 MB) +PASS -- TEST 'rap_restart_intel' [05:05, 03:13](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:08, 06:06](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:08, 06:22](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 04:35](881 MB) +PASS -- TEST 'hrrr_control_intel' [05:00, 03:14](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:00, 03:18](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:00, 02:48](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:39, 01:47](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:06, 06:00](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:51, 07:21](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:47, 07:07](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [12:21, 11:06] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:51, 06:26](963 MB) +PASS -- TEST 'control_ras_intel' [04:28, 02:52](657 MB) + +PASS -- COMPILE 'wam_intel' [11:21, 10:46] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:53, 09:56](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:21, 17:24] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:17, 03:03](1852 MB) +PASS -- TEST 'regional_control_faster_intel' [06:48, 04:46](872 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:19, 12:29] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 02:35](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:59, 02:30](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:53](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:37](810 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:53, 04:33](1122 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:41](817 MB) +PASS -- TEST 'control_diag_debug_intel' [05:11, 02:39](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [04:49, 03:12](1908 MB) +PASS -- TEST 'regional_debug_intel' [17:49, 16:27](930 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:49](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:34, 04:41](1183 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:37, 04:44](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:39](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:33, 04:43](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:16, 04:53](1274 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:32, 04:45](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:35, 04:57](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:42](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:42, 04:41](1194 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:36, 04:36](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:37, 04:41](1194 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 07:34](1192 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:35, 04:37](1186 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:34, 05:47](1194 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:33, 04:38](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:10, 07:52](1195 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 06:38] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:09, 12:16](1701 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:20, 11:07] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:34, 03:31](1056 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 05:06](886 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:06, 02:45](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:53, 04:45](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:05, 02:26](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:58, 02:53](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:58, 03:52](797 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:45, 01:30](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:20, 15:09] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:41, 01:52](1088 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:36, 00:57](1087 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:07](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:18, 11:08] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:03, 03:37](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:17, 07:03] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:34, 04:37](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:33](1069 MB) +PASS -- TEST 'conus13km_debug_intel' [16:06, 13:20](1154 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:01, 13:24](837 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 07:42](1153 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 13:37](1222 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:17, 06:52] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 04:47](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [19:19, 18:05] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:38, 04:37](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:35, 05:05](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:25](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:49, 11:00](792 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:08, 12:11](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 04:40](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:57, 05:49](491 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:08, 02:17](394 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 06:12](461 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:21](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:41, 03:06](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:21, 03:52](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:19](427 MB) +PASS -- TEST 'gnv1_nested_intel' [07:34, 04:07](1718 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:17, 08:16] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:30, 12:11](626 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [28:16, 27:09] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:30, 07:12](629 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:57, 07:12](689 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 19:06] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:36, 05:24](678 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:20, 15:45] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:39, 05:37](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:36, 05:40](739 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:18, 16:17](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:17, 08:37] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:30](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:22](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:24](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:23](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:33, 02:27](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:29](751 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:34, 02:20](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:53, 05:36](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:55, 05:36](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:28](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:46, 03:55](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:47, 03:53](2021 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:55] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:12](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:17, 08:34] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:29](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:16, 02:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:12, 01:16](312 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:11, 01:05](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:47](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:13, 12:58] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:59, 04:05](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:43, 03:47](1899 MB) + +PASS -- COMPILE 'atml_intel' [16:13, 15:13] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:52, 06:51](1886 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:52, 06:40](1884 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:01, 03:57](1037 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:12, 10:03] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:34, 06:19](1920 MB) + +PASS -- COMPILE 'atmw_intel' [15:15, 14:09] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:27, 02:09](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [13:19, 12:20] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:54, 04:12](3121 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:19](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:25, 04:22](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:18, 08:14] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:48, 21:48](4536 MB) SYNOPSIS: -Starting Date/Time: 20240628 06:32:21 -Ending Date/Time: 20240628 08:08:34 -Total Time: 01h:37m:19s +Starting Date/Time: 20240722 21:35:07 +Ending Date/Time: 20240723 00:11:51 +Total Time: 02h:37m:47s Compiles Completed: 41/41 -Tests Completed: 183/183 +Tests Completed: 181/183 +Failed Tests: +* TEST cpld_control_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2354/tests/logs/log_derecho/run_cpld_control_c192_p8_intel.log +* TEST cpld_restart_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2354/tests/logs/log_derecho/run_cpld_restart_c192_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +ec399e628231e03101314fdb378214c340cf96cc + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 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: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_56330 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_intel' [23:16, 21:55] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:38, 09:39](3892 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:17, 06:39](3629 MB) + +SYNOPSIS: +Starting Date/Time: 20240723 10:34:25 +Ending Date/Time: 20240723 11:22:06 +Total Time: 00h:47m:51s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 0114b9759d..fa74099679 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -552f487a2333cfd64aa1fcbdebc380f9158b9e52 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) - 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,352 +35,287 @@ 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-20240614 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_64571 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_14217 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:15, 19:19] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:47, 07:10](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:14, 24:44] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:53, 13:30](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:44, 14:04](1929 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:39, 06:39](1078 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:43, 14:49](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:12, 23:26] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:45, 13:21](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [19:12, 18:25] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:13, 24:10](1935 MB) - -PASS -- COMPILE 's2swa_intel' [19:12, 18:20] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:14, 08:06](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:28, 07:59](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:24, 05:15](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:29, 07:57](3243 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:29, 05:31](3177 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:15, 06:44](3455 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:21, 08:03](3220 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 06:59](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:43, 08:03](3223 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:24, 10:40](3439 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:53, 07:25](3603 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:28, 13:02](4190 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:20, 09:17](4342 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:19, 07:49](3205 MB) - -PASS -- COMPILE 's2sw_intel' [22:12, 21:45] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:48, 05:12](1933 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 05:24](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [19:12, 18:17] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:17, 09:56](3265 MB) - -PASS -- COMPILE 's2sw_debug_intel' [18:13, 17:32] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:27, 06:05](1944 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:13, 18:03] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:44, 05:16](1991 MB) - -PASS -- COMPILE 's2s_intel' [16:15, 15:49] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:25, 07:01](2910 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:36, 02:08](2912 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:20, 01:12](2310 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:12, 25:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:41, 08:08](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:12, 25:52] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:39, 14:53](1930 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:34, 07:52](1104 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:34, 17:07](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:12, 16:33] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:40, 26:57](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:39, 03:45](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:23, 03:29](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:17, 03:33](1570 MB) -PASS -- TEST 'control_latlon_intel' [05:08, 03:21](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:18, 03:35](1572 MB) -PASS -- TEST 'control_c48_intel' [08:24, 06:38](1595 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:12, 05:44](719 MB) -PASS -- TEST 'control_c192_intel' [12:19, 10:01](1682 MB) -PASS -- TEST 'control_c384_intel' [20:19, 18:16](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [17:17, 14:15](1178 MB) -PASS -- TEST 'control_stochy_intel' [02:26, 01:54](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:02](426 MB) -PASS -- TEST 'control_lndp_intel' [02:34, 01:48](622 MB) -PASS -- TEST 'control_iovr4_intel' [03:28, 02:38](620 MB) -PASS -- TEST 'control_iovr5_intel' [03:35, 02:40](619 MB) -PASS -- TEST 'control_p8_intel' [05:11, 03:22](1860 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:38, 03:26](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:28, 03:17](1865 MB) -PASS -- TEST 'control_restart_p8_intel' [03:11, 01:51](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:21, 03:22](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 02:11](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:13, 03:28](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:19, 02:47](1951 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:34](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:19, 04:30](1918 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:17, 03:26](1868 MB) -PASS -- TEST 'merra2_thompson_intel' [05:09, 03:42](1865 MB) -PASS -- TEST 'regional_control_intel' [05:45, 04:43](842 MB) -PASS -- TEST 'regional_restart_intel' [03:39, 02:58](860 MB) -PASS -- TEST 'regional_decomp_intel' [06:41, 05:16](860 MB) -PASS -- TEST 'regional_2threads_intel' [03:41, 03:05](999 MB) -PASS -- TEST 'regional_noquilt_intel' [05:48, 04:46](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:50, 04:49](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:44, 04:57](858 MB) -PASS -- TEST 'regional_wofs_intel' [07:44, 06:09](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 13:07] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:32, 06:48](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:17, 04:01](1183 MB) -PASS -- TEST 'rap_decomp_intel' [10:14, 07:01](1007 MB) -PASS -- TEST 'rap_2threads_intel' [09:32, 06:08](1100 MB) -PASS -- TEST 'rap_restart_intel' [05:13, 03:32](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:21, 06:52](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:21, 07:12](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:10, 05:13](878 MB) -PASS -- TEST 'hrrr_control_intel' [07:16, 04:08](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:16, 04:07](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:37, 03:05](1078 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:20](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:32, 06:41](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:52, 08:05](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:51, 07:50](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:42] -PASS -- TEST 'control_csawmg_intel' [08:54, 06:40](963 MB) -PASS -- TEST 'control_ras_intel' [05:59, 03:28](657 MB) - -PASS -- COMPILE 'wam_intel' [17:15, 16:10] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:11, 11:41](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:15, 20:23] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:20, 03:19](1858 MB) -PASS -- TEST 'regional_control_faster_intel' [05:43, 04:33](857 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:16, 12:35] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:58, 03:05](1574 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 03:01](1576 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:34, 03:09](786 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:29, 02:49](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:22](1092 MB) -PASS -- TEST 'control_ras_debug_intel' [03:28, 03:04](793 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 03:02](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [04:39, 03:19](1878 MB) -PASS -- TEST 'regional_debug_intel' [17:37, 16:19](885 MB) -PASS -- TEST 'rap_control_debug_intel' [05:34, 05:00](1168 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:26, 04:56](1161 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:34, 04:57](1164 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:33, 05:02](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:33, 05:08](1167 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:27](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:36, 05:03](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 05:11](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:37, 05:05](1169 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:28, 05:01](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:33, 04:56](1164 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:27, 05:09](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:30, 07:58](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:36, 04:53](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:58](1172 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:32, 05:15](1167 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:01, 08:31](1169 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:16, 11:44] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:58, 13:49](1675 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 12:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 04:00](1052 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:57](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:59, 03:23](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:05, 05:20](948 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:11, 02:47](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:01, 03:29](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:59, 04:06](785 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:40, 01:41](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 14:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:08, 02:21](1093 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:44, 01:04](1075 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:43, 01:24](977 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 13:41] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:11, 04:22](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 11:09] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:56](1046 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:31, 04:59](1045 MB) -PASS -- TEST 'conus13km_debug_intel' [15:53, 14:12](1125 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:35](804 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 14:14](1197 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:17, 10:24] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:32, 04:57](1071 MB) - -PASS -- COMPILE 'hafsw_intel' [19:19, 18:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:27, 05:26](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:38, 04:40](1060 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:38, 07:38](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:16, 11:37](788 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:33, 12:57](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:26, 05:22](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:28, 06:47](496 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:31, 03:03](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:50, 08:01](436 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:51, 03:43](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:06, 03:35](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:12, 04:40](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:49, 01:42](403 MB) -PASS -- TEST 'gnv1_nested_intel' [09:16, 05:28](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:21, 12:26] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:24, 12:58](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [25:13, 24:57] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:46, 07:42](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:41, 07:52](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:12, 20:45] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:11, 06:08](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:14, 16:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:13](743 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:13](728 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:17, 20:04](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [17:12, 17:03] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:25, 02:35](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:00, 01:34](734 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:26](638 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:32](639 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:24, 02:28](636 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:27, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:25, 02:26](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:59, 06:06](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:00, 06:09](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:43, 02:34](747 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:36, 04:34](2016 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:30, 04:38](2015 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:10, 09:48] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:32](742 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [16:17, 15:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:41](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 04:49] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:02, 01:57](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:54, 01:34](455 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:55, 01:01](455 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:14, 16:54] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:31, 05:16](1925 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [18:11, 18:07] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:44, 03:59](1912 MB) - -PASS -- COMPILE 'atml_intel' [22:14, 21:32] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:43, 07:09](1890 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:43, 07:27](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 04:03](1030 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:12, 15:12] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:25, 06:25](1916 MB) - -PASS -- COMPILE 'atmw_intel' [16:11, 15:36] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:03, 02:22](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [16:11, 15:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:21, 05:58](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:19, 06:41](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:10, 06:38](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:12, 12:12] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:43, 18:09](4491 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:12, 40:46] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:04, 08:00](3197 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [42:15, 41:14] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 14:01](1924 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:57, 14:44](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:46, 06:59](1078 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:44, 15:02](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:15, 41:26] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:56, 13:51](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [37:15, 36:46] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:33, 24:39](1948 MB) + +PASS -- COMPILE 's2swa_intel' [41:12, 40:48] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:28, 08:41](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:35, 08:49](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:03, 05:15](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:27, 08:53](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:04, 05:12](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:41, 06:47](3462 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:18, 08:38](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:51, 07:40](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:45, 08:47](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:45, 10:44](3441 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 07:19](3612 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:06, 13:52](4205 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:34, 09:49](4363 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:52, 07:49](3207 MB) + +PASS -- COMPILE 's2sw_intel' [38:15, 37:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 05:43](1938 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 06:06](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [37:15, 36:15] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:50, 10:45](3279 MB) + +PASS -- COMPILE 's2sw_debug_intel' [35:12, 34:15] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:53, 06:00](1958 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [37:15, 36:25] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:50, 05:18](1999 MB) + +PASS -- COMPILE 's2s_intel' [34:12, 33:52] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:45, 06:31](2925 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:36, 02:05](2930 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:46, 01:29](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [40:16, 40:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:00, 08:26](3228 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [35:14, 34:18] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:46, 15:44](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:51, 08:07](1108 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:39, 18:12](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [25:12, 24:39] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:02, 27:01](1962 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [25:12, 24:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:36, 04:03](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:30, 03:07](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:26, 03:20](1569 MB) +PASS -- TEST 'control_latlon_intel' [07:13, 03:40](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:24, 03:37](1572 MB) +PASS -- TEST 'control_c48_intel' [10:36, 06:31](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:16, 05:40](720 MB) +PASS -- TEST 'control_c192_intel' [15:15, 10:06](1681 MB) +PASS -- TEST 'control_c384_intel' [23:46, 18:14](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [18:27, 14:15](1178 MB) +PASS -- TEST 'control_stochy_intel' [05:33, 02:08](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:28](426 MB) +PASS -- TEST 'control_lndp_intel' [04:34, 01:59](622 MB) +PASS -- TEST 'control_iovr4_intel' [05:40, 02:53](620 MB) +PASS -- TEST 'control_iovr5_intel' [05:40, 02:37](620 MB) +PASS -- TEST 'control_p8_intel' [06:31, 03:41](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:44, 04:02](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 03:28](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [03:11, 01:49](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:21, 03:28](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:50](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:18, 03:26](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:18, 03:08](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:23](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:54](1919 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:31, 03:40](1867 MB) +PASS -- TEST 'merra2_thompson_intel' [05:29, 03:50](1865 MB) +PASS -- TEST 'regional_control_intel' [06:52, 05:19](859 MB) +PASS -- TEST 'regional_restart_intel' [03:47, 02:51](861 MB) +PASS -- TEST 'regional_decomp_intel' [06:51, 05:29](860 MB) +PASS -- TEST 'regional_2threads_intel' [04:46, 03:11](1007 MB) +PASS -- TEST 'regional_noquilt_intel' [06:56, 05:08](1176 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 05:10](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 05:17](867 MB) +PASS -- TEST 'regional_wofs_intel' [09:17, 06:51](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [24:12, 23:57] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:30, 06:46](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 04:04](1185 MB) +PASS -- TEST 'rap_decomp_intel' [09:31, 07:08](1009 MB) +PASS -- TEST 'rap_2threads_intel' [08:38, 06:07](1101 MB) +PASS -- TEST 'rap_restart_intel' [06:14, 03:38](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:37, 06:59](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:30, 07:09](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:19, 05:27](880 MB) +PASS -- TEST 'hrrr_control_intel' [05:22, 03:52](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:59](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 03:10](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:25](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:31, 06:57](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:54, 08:11](1962 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:52](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [23:12, 22:18] +PASS -- TEST 'control_csawmg_intel' [10:55, 06:39](964 MB) +PASS -- TEST 'control_ras_intel' [04:45, 03:29](657 MB) + +PASS -- COMPILE 'wam_intel' [21:11, 20:38] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:12, 11:47](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [29:11, 28:34] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:01, 03:13](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [06:38, 05:05](866 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [24:13, 23:09] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:13, 03:01](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:09, 03:02](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:54, 03:21](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:51](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:51, 04:30](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [04:07, 02:52](805 MB) +PASS -- TEST 'control_diag_debug_intel' [04:28, 03:01](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 03:25](1892 MB) +PASS -- TEST 'regional_debug_intel' [17:47, 16:33](910 MB) +PASS -- TEST 'rap_control_debug_intel' [06:37, 05:10](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:37, 05:04](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:29, 05:43](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 05:24](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:31](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:38, 05:45](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:37, 05:39](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 06:01](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:40](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:52](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:37, 05:42](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:51, 05:22](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:36, 08:17](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:46, 05:03](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:59](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:36, 05:10](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:21, 08:42](1185 MB) + +PASS -- COMPILE 'wam_debug_intel' [17:11, 16:58] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:11, 13:39](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:12, 18:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:21, 04:04](1046 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:11, 05:54](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:05, 03:39](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:16, 05:22](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 02:56](935 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 03:39](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:34, 04:29](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:01](763 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:15, 24:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:49, 02:15](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:58, 01:29](1082 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:01, 01:23](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:11, 19:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:20, 04:16](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:12, 15:23] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:57](1058 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:51](1061 MB) +PASS -- TEST 'conus13km_debug_intel' [17:10, 14:36](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:59, 14:32](819 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:09, 08:28](1126 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 14:20](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:12, 15:14] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 05:09](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [25:11, 24:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:25, 05:59](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:50, 05:09](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:47, 08:19](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:29, 12:18](788 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:50, 13:32](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:27, 06:34](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:47, 07:53](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:35, 03:16](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:18, 09:09](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:00, 04:27](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:21, 04:43](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:26, 04:51](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:18, 01:48](403 MB) +PASS -- TEST 'gnv1_nested_intel' [11:57, 06:11](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [20:14, 19:52] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:21, 13:23](599 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [33:16, 32:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:29, 07:44](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:29, 07:49](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [29:12, 28:09] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:43, 06:11](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [28:15, 27:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:18, 06:17](742 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:28, 06:17](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:33, 20:02](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [24:14, 23:28] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:34](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:33, 01:36](748 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:29, 02:30](635 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:41, 02:28](635 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:32](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:41, 02:35](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:36](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:28](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:24, 06:06](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:27, 06:13](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:39, 02:34](747 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:39, 04:39](2014 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:37, 04:41](2014 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [19:15, 19:04] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:33](742 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [24:14, 23:51] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 02:34](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:15, 07:40] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:59, 02:31](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:00, 01:50](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:57, 01:13](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:11, 26:01] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:33, 04:13](1924 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [25:11, 24:47] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:46, 04:01](1913 MB) + +PASS -- COMPILE 'atml_intel' [26:11, 25:37] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:48, 07:29](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 07:12](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:57, 04:00](1045 MB) + +PASS -- COMPILE 'atml_debug_intel' [21:17, 20:32] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:39, 06:34](1933 MB) + +PASS -- COMPILE 'atmw_intel' [20:11, 19:39] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:06, 02:29](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [18:11, 17:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:27, 06:24](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:27, 06:30](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:20, 07:01](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:11, 12:40] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:40, 18:31](4484 MB) SYNOPSIS: -Starting Date/Time: 20240628 09:52:05 -Ending Date/Time: 20240628 11:31:21 -Total Time: 01h:40m:32s +Starting Date/Time: 20240722 18:29:44 +Ending Date/Time: 20240722 20:48:48 +Total Time: 02h:20m:27s Compiles Completed: 41/41 -Tests Completed: 184/185 -Failed Tests: -* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Zachary.Shrader/rt-2327/tests/logs/log_gaea/run_conus13km_debug_2threads_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -552f487a2333cfd64aa1fcbdebc380f9158b9e52 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) - 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_189085 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [23:16, 22:29] ( 787 warnings 8 remarks ) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:25](1115 MB) - -SYNOPSIS: -Starting Date/Time: 20240628 14:40:53 -Ending Date/Time: 20240628 15:13:57 -Total Time: 00h:33m:36s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 185/185 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 95b52686db..3e1f1d26cd 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -3e04c0d37a597ad74e5fe0ca22a19d8fcffef4c4 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,11 +9,11 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,376 +24,377 @@ 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-20240614 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3037433 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2238840 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [13:57, 13:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:47, 05:45](3284 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:40, 16:39] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:58, 17:12](1951 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:12, 18:08](2112 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:15, 08:16](1222 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:09, 19:25](1837 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:42, 16:41] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:43, 17:13](1941 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:37, 05:36] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:39, 22:55](1873 MB) - -PASS -- COMPILE 's2swa_intel' [13:56, 13:55] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:18, 06:09](3314 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:19, 06:12](3318 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:05, 03:43](3235 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:11, 06:11](3337 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:53, 03:43](3246 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [06:46, 05:56](3591 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:25, 06:30](3308 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:09, 05:08](3191 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:21, 06:22](3312 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:05, 10:24](3488 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:41, 06:25](3611 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:18, 10:07](4252 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:32, 06:21](4334 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:38, 05:45](3293 MB) - -PASS -- COMPILE 's2sw_intel' [13:19, 13:18] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:48, 04:59](1949 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:34, 04:41](2019 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:36, 05:35] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:46, 08:54](3309 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 05:10] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:48, 05:58](1957 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:17, 12:16] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:35, 04:36](2020 MB) - -PASS -- COMPILE 's2s_intel' [12:33, 12:32] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:15, 09:34](3068 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:23, 02:48](3042 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:23, 01:45](2482 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:25, 21:23] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:38, 05:44](3311 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:57, 15:57] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:14, 17:28](1995 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:33, 08:26](1254 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:46, 19:55](1908 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:13, 05:12] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:16, 24:30](1904 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:14, 12:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:37, 03:22](680 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 02:56](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:33, 03:01](1590 MB) -PASS -- TEST 'control_latlon_intel' [03:23, 02:57](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:59](1583 MB) -PASS -- TEST 'control_c48_intel' [08:10, 07:41](1742 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:40, 06:26](847 MB) -PASS -- TEST 'control_c192_intel' [11:20, 10:37](1725 MB) -PASS -- TEST 'control_c384_intel' [12:05, 10:40](1998 MB) -PASS -- TEST 'control_c384gdas_intel' [10:18, 08:06](1389 MB) -PASS -- TEST 'control_stochy_intel' [01:52, 01:38](636 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:20, 01:01](477 MB) -PASS -- TEST 'control_lndp_intel' [01:50, 01:36](644 MB) -PASS -- TEST 'control_iovr4_intel' [02:48, 02:31](632 MB) -PASS -- TEST 'control_iovr5_intel' [02:48, 02:32](637 MB) -PASS -- TEST 'control_p8_intel' [03:56, 03:12](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:59, 03:15](1868 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:44, 03:08](1874 MB) -PASS -- TEST 'control_restart_p8_intel' [02:26, 01:49](1115 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:50, 03:10](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:35, 01:57](1146 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:52, 03:17](1844 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:32, 02:59](1969 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:02, 05:29](1872 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 04:12](1934 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:02, 03:22](1875 MB) -PASS -- TEST 'merra2_thompson_intel' [04:17, 03:40](1862 MB) -PASS -- TEST 'regional_control_intel' [05:57, 05:32](1083 MB) -PASS -- TEST 'regional_restart_intel' [03:25, 02:58](1078 MB) -PASS -- TEST 'regional_decomp_intel' [06:11, 05:46](1080 MB) -PASS -- TEST 'regional_2threads_intel' [04:00, 03:30](1078 MB) -PASS -- TEST 'regional_noquilt_intel' [05:56, 05:31](1378 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:56, 05:28](1091 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:59, 05:34](1082 MB) -PASS -- TEST 'regional_wofs_intel' [07:24, 06:59](1897 MB) - -PASS -- COMPILE 'rrfs_intel' [11:18, 11:17] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:18, 07:47](1085 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:04, 04:16](1278 MB) -PASS -- TEST 'rap_decomp_intel' [08:45, 08:15](1017 MB) -PASS -- TEST 'rap_2threads_intel' [07:47, 07:19](1171 MB) -PASS -- TEST 'rap_restart_intel' [04:39, 04:05](1084 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:19, 07:47](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:38, 08:12](1021 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:30, 05:50](1120 MB) -PASS -- TEST 'hrrr_control_intel' [04:29, 04:03](1027 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:33, 04:09](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:10, 03:42](1094 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:35, 02:12](987 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:22, 07:42](1084 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:47, 09:26](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 09:11](2048 MB) - -PASS -- COMPILE 'csawmg_intel' [10:50, 10:50] -PASS -- TEST 'control_csawmg_intel' [06:45, 06:16](1004 MB) -PASS -- TEST 'control_ras_intel' [03:32, 03:20](726 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:21, 04:20] -PASS -- TEST 'control_csawmg_gnu' [09:03, 08:38](739 MB) - -PASS -- COMPILE 'wam_intel' [10:44, 10:43] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:39, 11:03](1645 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:37, 18:36] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:35, 02:50](1877 MB) -PASS -- TEST 'regional_control_faster_intel' [05:24, 04:55](1081 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:48, 06:48] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:20, 02:48](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:21, 02:49](1572 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:20, 03:05](786 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:03, 02:49](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:46, 04:12](1100 MB) -PASS -- TEST 'control_ras_debug_intel' [03:06, 02:53](791 MB) -PASS -- TEST 'control_diag_debug_intel' [03:21, 02:46](1636 MB) -PASS -- TEST 'control_debug_p8_intel' [03:33, 03:02](1874 MB) -PASS -- TEST 'regional_debug_intel' [18:11, 17:44](1065 MB) -PASS -- TEST 'rap_control_debug_intel' [05:13, 04:56](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:07, 04:51](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:09, 04:54](1165 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:10, 04:57](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 05:01](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:40, 05:15](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 05:03](1162 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:10](1170 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 05:03](1164 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 05:02](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:16, 05:01](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 05:02](1167 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 08:11](1167 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:08, 04:53](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 06:11](1170 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:23, 05:09](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:18, 08:46](1178 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:53, 04:52] -PASS -- TEST 'control_csawmg_debug_gnu' [02:53, 02:24](711 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:16, 04:16] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:14, 13:37](1642 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:55, 10:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:56, 04:04](1151 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:11, 06:44](1028 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:01, 03:32](969 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:49, 06:27](1075 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:51, 03:25](942 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:26, 03:56](907 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:26, 04:57](1011 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:23, 01:59](913 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:58, 14:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:06, 02:15](1189 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:32, 00:57](1108 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:56, 01:19](1090 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:55, 10:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:56, 04:23](966 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:17, 04:16] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 05:03](1049 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:10, 04:54](1047 MB) -PASS -- TEST 'conus13km_debug_intel' [14:54, 14:17](1184 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:13, 14:35](880 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:41, 08:08](1105 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:49, 14:16](1245 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:03, 04:02] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:22, 05:06](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [12:34, 12:33] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:08, 05:11](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:02, 06:36](1085 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:04, 06:57](816 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:42, 13:42](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:33, 15:24](870 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:25, 05:40](488 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:05, 07:02](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:20, 02:47](358 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:09, 07:25](469 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:23, 03:52](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:19, 03:40](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:56, 04:17](569 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:30, 01:12](398 MB) -PASS -- TEST 'gnv1_nested_intel' [05:17, 04:04](1698 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:34, 04:32] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:28, 12:46](530 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:36, 20:35] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:41, 08:54](653 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:42, 08:52](699 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:42, 12:41] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:21, 06:33](674 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:28, 11:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:39, 06:39](810 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:39, 06:41](786 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:53, 16:16](1224 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:42, 06:42] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:50, 02:43](1152 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:49, 01:39](1081 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:44, 02:38](1004 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:42, 02:35](1017 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:44, 02:36](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:48, 02:40](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:52, 02:44](1144 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:40, 02:32](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:16, 06:09](1053 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:14, 06:05](1052 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:52, 02:46](1157 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:09, 03:59](2444 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:07, 03:59](2487 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:33, 03:32] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:20, 06:12](1064 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:40, 06:40] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:57, 02:50](1140 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:17, 01:16] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:07, 00:48](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:04, 00:51](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](310 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:35, 11:34] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:40, 03:47](1971 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:31, 11:31] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:43, 03:49](1943 MB) - -PASS -- COMPILE 'atml_intel' [12:33, 12:32] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:23, 04:29](1847 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [05:12, 04:26](1846 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:03, 02:26](1091 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:16, 05:16] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:51, 06:00](1843 MB) - -PASS -- COMPILE 'atmw_intel' [11:27, 11:27] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:33, 01:56](1906 MB) - -PASS -- COMPILE 'atmaero_intel' [11:38, 11:38] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:56, 04:14](3172 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:48, 05:03](3069 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:35, 05:02](3080 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:06, 04:06] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:16, 21:35](4298 MB) - -PASS -- COMPILE 'atm_gnu' [04:41, 04:41] -PASS -- TEST 'control_c48_gnu' [11:49, 11:21](1531 MB) -PASS -- TEST 'control_stochy_gnu' [03:37, 03:22](492 MB) -PASS -- TEST 'control_ras_gnu' [04:54, 04:43](497 MB) -PASS -- TEST 'control_p8_gnu' [05:31, 04:49](1447 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:23, 04:43](1447 MB) -PASS -- TEST 'control_flake_gnu' [10:27, 10:13](535 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:23, 04:23] -PASS -- TEST 'rap_control_gnu' [11:13, 10:45](815 MB) -PASS -- TEST 'rap_decomp_gnu' [11:21, 10:57](844 MB) -PASS -- TEST 'rap_2threads_gnu' [10:15, 09:51](929 MB) -PASS -- TEST 'rap_restart_gnu' [05:50, 05:24](567 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:25, 10:59](843 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:29, 11:07](809 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:32, 08:01](573 MB) -PASS -- TEST 'hrrr_control_gnu' [06:04, 05:37](807 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:05, 05:39](798 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:31, 05:08](918 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:57, 05:34](840 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:08, 02:49](555 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:11, 02:50](650 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:55, 10:27](809 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:44, 07:43] -PASS -- TEST 'control_diag_debug_gnu' [02:14, 01:42](1257 MB) -PASS -- TEST 'regional_debug_gnu' [11:44, 11:19](724 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:54, 02:41](811 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:56, 02:41](807 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:48, 02:38](809 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:52, 02:40](809 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:13, 02:50](896 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 04:06](806 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:47, 02:36](811 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:45, 02:34](804 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:46, 01:35](443 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:58, 01:47](435 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:24, 01:55](1413 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:57, 02:38](815 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:10, 02:59](815 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:43, 04:17](823 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:51, 02:50] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:24, 04:23] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:50, 09:22](696 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:22, 04:56](699 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:02, 08:38](747 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:53, 04:32](736 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:24, 05:03](697 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:30, 07:03](543 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:50, 02:35](530 MB) -PASS -- TEST 'conus13km_control_gnu' [03:55, 03:14](865 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:23, 05:52](874 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:26, 01:53](546 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:06, 11:06] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:46](725 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:34, 07:34] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:47, 02:34](696 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:44, 02:32](697 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:37, 07:01](863 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:37, 07:02](564 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:03, 07:34](864 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:31, 06:56](930 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:34, 07:34] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:52, 02:38](718 MB) - -PASS -- COMPILE 's2swa_gnu' [16:20, 16:19] - -PASS -- COMPILE 's2s_gnu' [15:59, 15:59] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:19, 07:26](1519 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:23, 03:23] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:12] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:14, 19:23](1436 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:06, 03:06] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:27, 12:40](1451 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:33, 15:33] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:07, 02:58](687 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 06:05](3277 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:12, 16:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:03, 17:32](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:13, 18:08](2132 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:08, 08:23](1228 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:26](1861 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:39, 17:11](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:16] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:25](1891 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 13:20] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:10, 05:54](3310 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:18, 06:21](3318 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:26, 03:31](3241 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:11, 06:02](3347 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:26, 03:34](3251 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:11, 05:37](3598 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:09, 06:00](3313 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:04, 05:00](3188 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:17, 05:55](3322 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 10:19](3487 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:47, 06:41](3606 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:26, 10:10](4260 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:10, 06:29](4362 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 05:26](3296 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 12:52] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:58, 05:04](1961 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:05, 04:26](2038 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:19] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:03, 08:39](3333 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:56] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 06:02](1976 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 12:03] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:01, 04:25](2040 MB) + +PASS -- COMPILE 's2s_intel' [12:12, 12:02] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:41, 09:04](3089 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:45](3062 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:34](2499 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:15, 17:18] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:17, 05:36](3328 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 16:48] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:29](1987 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:22](1270 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:08, 19:56](1895 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:14, 05:06] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 24:58](1919 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:24, 03:21](687 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 02:54](1575 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:44, 02:58](1583 MB) +PASS -- TEST 'control_latlon_intel' [03:42, 02:55](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 02:59](1578 MB) +PASS -- TEST 'control_c48_intel' [08:45, 07:32](1734 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 06:26](840 MB) +PASS -- TEST 'control_c192_intel' [12:02, 10:34](1729 MB) +PASS -- TEST 'control_c384_intel' [14:04, 10:35](1995 MB) +PASS -- TEST 'control_c384gdas_intel' [11:59, 08:00](1379 MB) +PASS -- TEST 'control_stochy_intel' [02:26, 01:41](631 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:06](489 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:36](636 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:28](636 MB) +PASS -- TEST 'control_iovr5_intel' [03:25, 02:26](632 MB) +PASS -- TEST 'control_p8_intel' [04:55, 03:08](1872 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:11](1875 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 03:00](1874 MB) +PASS -- TEST 'control_restart_p8_intel' [02:49, 01:47](1095 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:51, 03:04](1863 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:52, 01:44](1136 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:49, 03:10](1869 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:48, 02:57](1979 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:26](1877 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 04:06](1937 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:55, 03:06](1891 MB) +PASS -- TEST 'merra2_thompson_intel' [04:52, 03:25](1880 MB) +PASS -- TEST 'regional_control_intel' [06:37, 05:20](1082 MB) +PASS -- TEST 'regional_restart_intel' [04:38, 02:55](1078 MB) +PASS -- TEST 'regional_decomp_intel' [06:36, 05:41](1075 MB) +PASS -- TEST 'regional_2threads_intel' [04:39, 03:29](1074 MB) +PASS -- TEST 'regional_noquilt_intel' [06:39, 05:16](1378 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:20](1082 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 05:20](1082 MB) +PASS -- TEST 'regional_wofs_intel' [07:35, 06:52](1896 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 11:07] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:43, 07:45](1093 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:16](1286 MB) +PASS -- TEST 'rap_decomp_intel' [08:38, 08:07](1014 MB) +PASS -- TEST 'rap_2threads_intel' [08:37, 07:19](1164 MB) +PASS -- TEST 'rap_restart_intel' [04:48, 04:04](1088 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:42, 07:45](1088 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 08:09](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 05:53](1117 MB) +PASS -- TEST 'hrrr_control_intel' [04:42, 04:00](1024 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:10](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:39](1095 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:12](953 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:35](1080 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:14](1973 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:08](2044 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:53] +PASS -- TEST 'control_csawmg_intel' [07:36, 06:10](1006 MB) +PASS -- TEST 'control_ras_intel' [04:22, 03:16](732 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:13] +PASS -- TEST 'control_csawmg_gnu' [09:44, 08:25](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:41] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:47, 11:00](1649 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:50, 02:49](1890 MB) +PASS -- TEST 'regional_control_faster_intel' [05:40, 04:52](1078 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 06:01] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:56, 02:43](1594 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:56, 02:35](1594 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:28, 03:04](793 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:52](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:50, 04:23](1117 MB) +PASS -- TEST 'control_ras_debug_intel' [03:28, 03:00](803 MB) +PASS -- TEST 'control_diag_debug_intel' [07:00, 02:48](1649 MB) +PASS -- TEST 'control_debug_p8_intel' [06:52, 03:04](1885 MB) +PASS -- TEST 'regional_debug_intel' [18:48, 17:52](1077 MB) +PASS -- TEST 'rap_control_debug_intel' [06:29, 05:07](1181 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:32, 04:54](1179 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 05:05](1186 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:32, 05:05](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:08](1183 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:46, 05:21](1267 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 05:19](1184 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 05:13](1183 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:25, 05:08](1178 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:56](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 05:04](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:59](1190 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:07](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:01](1182 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 06:13](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:05](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:44, 08:54](1189 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:42] +PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 02:20](705 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 04:10] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:49, 13:44](1656 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 03:54](1143 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:35](1018 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:40, 03:25](980 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 06:09](1050 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 03:12](941 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:37](927 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:40, 04:52](1024 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:52](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 14:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:59, 02:06](1186 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:44, 00:55](1104 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:17](1089 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:10](971 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:36] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 05:11](1056 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:55](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [15:56, 14:52](1214 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 15:11](903 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:19](1117 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:33](1259 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:54] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:13](1100 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 12:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:17, 05:08](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:35, 05:47](1101 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:29, 06:54](811 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:33](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:44, 15:20](868 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:00, 05:33](484 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:28, 06:49](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:47, 02:44](362 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:08, 07:18](469 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:43](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:49, 03:33](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 04:10](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:29, 01:17](387 MB) +PASS -- TEST 'gnv1_nested_intel' [09:38, 04:08](1704 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:40] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:54, 13:02](553 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:12, 16:48] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:03, 08:43](652 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:07, 08:54](701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:07, 06:27](674 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:19, 06:30](813 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:15, 06:35](792 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 15:54](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:52] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:44](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:39](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:34](1010 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:37](1011 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:38](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:39](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:40](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:35](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:16](1067 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:24, 06:19](1051 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:44](1132 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:52](2488 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:55](2493 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:17](1054 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:30] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:39](1153 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:13, 01:07] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:48](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:50](312 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](310 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:33] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 03:40](1966 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:57] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:14, 03:37](1939 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 12:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:06, 04:24](1837 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:30](1851 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:27](1074 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:09] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:01, 05:48](1866 MB) + +PASS -- COMPILE 'atmw_intel' [12:14, 11:39] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:55](1902 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 11:22] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:11](3182 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:15, 04:55](3080 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:47, 05:18](3083 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:54] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:09, 21:26](4438 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:45] +PASS -- TEST 'control_c48_gnu' [12:43, 11:16](1523 MB) +PASS -- TEST 'control_stochy_gnu' [04:31, 03:28](491 MB) +PASS -- TEST 'control_ras_gnu' [06:25, 04:45](496 MB) +PASS -- TEST 'control_p8_gnu' [06:01, 04:46](1449 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:41](1437 MB) +PASS -- TEST 'control_flake_gnu' [11:26, 10:23](531 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:14] +PASS -- TEST 'rap_control_gnu' [11:35, 10:53](840 MB) +PASS -- TEST 'rap_decomp_gnu' [12:36, 11:08](842 MB) +PASS -- TEST 'rap_2threads_gnu' [10:40, 09:49](918 MB) +PASS -- TEST 'rap_restart_gnu' [07:57, 05:37](566 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:44, 10:50](803 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:34, 11:02](837 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 08:12](567 MB) +PASS -- TEST 'hrrr_control_gnu' [06:42, 05:37](804 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:37, 05:37](794 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:37, 05:04](913 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:37, 05:37](835 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [08:33, 02:55](550 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:33, 02:55](644 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:35](801 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:36] +PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:40](1254 MB) +PASS -- TEST 'regional_debug_gnu' [11:42, 10:17](723 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:25, 02:42](801 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:35](804 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:42](807 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:28, 02:39](805 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:45, 02:50](892 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:12](803 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:39](805 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:24, 02:39](801 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:33](440 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:23, 01:47](429 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:43, 01:48](1421 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:45](811 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 03:02](811 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:24](819 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:35] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:26](696 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:36, 04:58](703 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:43, 08:38](751 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [11:36, 04:37](731 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:29, 05:06](697 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 07:07](542 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:33](525 MB) +PASS -- TEST 'conus13km_control_gnu' [09:03, 03:16](868 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:49, 06:25](866 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:49, 01:49](540 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 10:59] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](719 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:47] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [07:25, 02:36](700 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [07:25, 02:34](699 MB) +PASS -- TEST 'conus13km_debug_gnu' [11:55, 07:00](863 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:48, 07:10](565 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [12:44, 07:25](864 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:45, 07:09](931 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:25, 02:39](718 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:49] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:55] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:08, 07:16](1533 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:26] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:04] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:57, 20:29](1438 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:10] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:54, 12:53](1446 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:03](682 MB) SYNOPSIS: -Starting Date/Time: 20240627 23:34:39 -Ending Date/Time: 20240628 04:36:49 -Total Time: 05h:02m:27s +Starting Date/Time: 20240723 00:42:52 +Ending Date/Time: 20240723 02:20:57 +Total Time: 01h:39m:21s Compiles Completed: 57/57 Tests Completed: 245/245 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index d1d9d26f71..8a915a55f8 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -7968ca105b129742d9f3eff503cb8a62efd6cbcb +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) - 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,385 +35,381 @@ 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-20240614 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_118853 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1318349 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:34] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:53, 07:32](2120 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:00, 13:07](1997 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:23, 13:52](2303 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:11, 06:25](1302 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:46, 14:49](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 17:58] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:24, 12:53](1986 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:30] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:04, 20:29](1967 MB) - -PASS -- COMPILE 's2swa_intel' [11:10, 10:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:47, 07:37](2187 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:59, 07:38](2178 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:05, 04:17](1955 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:47, 07:38](2204 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 04:19](1750 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:43, 08:52](2549 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:43, 07:41](2169 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:53, 06:20](2085 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 07:37](2195 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:40, 15:23](2979 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:09, 05:41](2932 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:20, 08:33](3786 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:00, 05:25](3618 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:49, 04:58](2149 MB) - -PASS -- COMPILE 's2sw_intel' [11:10, 10:39] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:44, 07:01](2022 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:50, 04:07](2082 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:39] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [07:52, 07:07](2203 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:48] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:46, 04:54](2027 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:10, 08:57] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:45, 04:08](2089 MB) - -PASS -- COMPILE 's2s_intel' [09:10, 09:02] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:37, 07:25](3093 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:35, 02:11](3067 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:30, 01:14](2495 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:52] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:58, 07:22](2186 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:53] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:55, 13:30](2039 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:55, 06:40](1386 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:44, 15:02](1954 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:32] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:59, 21:41](2011 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:16, 02:52](708 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:25](1601 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:29, 02:32](1616 MB) -PASS -- TEST 'control_latlon_intel' [03:29, 02:28](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:34, 02:28](1613 MB) -PASS -- TEST 'control_c48_intel' [07:31, 06:59](1738 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:22, 05:47](860 MB) -PASS -- TEST 'control_c192_intel' [10:39, 09:10](1757 MB) -PASS -- TEST 'control_c384_intel' [10:16, 09:07](2042 MB) -PASS -- TEST 'control_c384gdas_intel' [09:48, 07:12](1530 MB) -PASS -- TEST 'control_stochy_intel' [02:20, 01:21](665 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:33, 00:50](540 MB) -PASS -- TEST 'control_lndp_intel' [02:19, 01:17](661 MB) -PASS -- TEST 'control_iovr4_intel' [02:17, 02:02](656 MB) -PASS -- TEST 'control_iovr5_intel' [02:18, 02:04](667 MB) -PASS -- TEST 'control_p8_intel' [03:43, 02:38](1903 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:45, 02:46](1910 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:45, 02:40](1915 MB) -PASS -- TEST 'control_restart_p8_intel' [02:37, 01:32](1150 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:42, 02:34](1908 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:50, 01:35](1205 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:34, 02:41](1901 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:39, 02:29](1998 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:29, 04:40](1902 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 03:37](1983 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:45, 02:54](1920 MB) -PASS -- TEST 'merra2_thompson_intel' [03:52, 02:55](1917 MB) -PASS -- TEST 'regional_control_intel' [05:27, 04:40](1198 MB) -PASS -- TEST 'regional_restart_intel' [03:27, 02:32](1179 MB) -PASS -- TEST 'regional_decomp_intel' [05:24, 04:55](1200 MB) -PASS -- TEST 'regional_2threads_intel' [03:24, 02:59](1160 MB) -PASS -- TEST 'regional_noquilt_intel' [05:25, 04:29](1519 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:35, 04:46](1197 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:30, 04:42](1202 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 05:37](2083 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 07:50] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:40, 06:26](1244 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:45, 03:22](1410 MB) -PASS -- TEST 'rap_decomp_intel' [07:40, 06:54](1147 MB) -PASS -- TEST 'rap_2threads_intel' [07:40, 06:12](1390 MB) -PASS -- TEST 'rap_restart_intel' [04:57, 03:25](1156 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:43, 06:40](1208 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:43, 06:59](1154 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:50, 04:59](1200 MB) -PASS -- TEST 'hrrr_control_intel' [04:38, 03:25](1069 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:38, 03:30](1041 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:45, 03:05](1132 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:24, 01:50](1045 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:53, 06:25](1179 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:38](2019 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:21, 07:26](2188 MB) - -PASS -- COMPILE 'csawmg_intel' [08:10, 07:11] -PASS -- TEST 'control_csawmg_intel' [06:30, 05:31](1078 MB) -PASS -- TEST 'control_ras_intel' [03:18, 02:49](851 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:10, 05:16] -PASS -- TEST 'control_csawmg_gnu' [07:30, 06:48](1070 MB) - -PASS -- COMPILE 'wam_intel' [09:11, 08:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:32, 10:19](1674 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 13:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:46, 02:24](1908 MB) -PASS -- TEST 'regional_control_faster_intel' [04:29, 04:06](1208 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:44] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:27, 02:09](1628 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:30, 02:07](1631 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:29](832 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:12](833 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:27, 04:01](1155 MB) -PASS -- TEST 'control_ras_debug_intel' [03:20, 02:16](838 MB) -PASS -- TEST 'control_diag_debug_intel' [03:35, 02:11](1687 MB) -PASS -- TEST 'control_debug_p8_intel' [03:28, 02:26](1921 MB) -PASS -- TEST 'regional_debug_intel' [15:27, 14:29](1175 MB) -PASS -- TEST 'rap_control_debug_intel' [04:18, 04:02](1224 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:18, 03:56](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:56](1227 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 04:00](1220 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 03:59](1225 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:23, 04:09](1308 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:25, 03:59](1228 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:16, 04:07](1230 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:18, 04:05](1215 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 04:00](1220 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:54](1222 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:55](1226 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:27](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:54](1223 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 04:56](1218 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:17, 04:14](1224 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:46, 06:57](1220 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 04:08] -PASS -- TEST 'control_csawmg_debug_gnu' [02:29, 01:57](1058 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:47] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 07:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:45, 03:13](1283 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:32, 05:22](1168 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:51, 02:51](1054 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:40, 05:02](1290 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 02:37](1043 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:38, 03:02](996 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:38, 04:06](1075 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:33](967 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:10, 10:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:37, 01:43](1314 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:26, 00:43](1201 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:25, 01:02](1160 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 03:39](1102 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:58] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:16, 04:05](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 03:53](1097 MB) -PASS -- TEST 'conus13km_debug_intel' [12:31, 12:01](1351 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:29, 11:57](1001 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:25, 06:45](1244 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 11:40](1420 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:58] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:18, 04:08](1160 MB) - -PASS -- COMPILE 'hafsw_intel' [10:10, 09:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:02, 05:19](878 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:22, 05:00](1271 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 06:15](953 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:04, 13:40](998 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:06, 14:59](994 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:45, 05:28](608 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:17, 07:12](624 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:35, 02:44](439 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:55, 07:41](551 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:38, 03:55](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:41, 03:43](621 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:40, 04:46](673 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:23, 01:17](459 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:10, 04:24] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:39, 11:42](644 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:37] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:49, 16:36](731 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:54, 16:41](814 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:46, 09:27](822 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:10, 10:02] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:01, 05:45](939 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:00, 05:49](920 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:39, 16:19](1341 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:35] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:12](1157 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:18](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:14, 02:04](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 02:08](1019 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:14, 02:07](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:09](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:10](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:06](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:53, 04:52](1167 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:52, 04:51](1143 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:11](1139 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:14, 03:00](2396 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:01](2394 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 02:51] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 05:06](1069 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:23] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:08](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:11] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:48](342 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:47](581 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:22, 00:29](571 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 07:44] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:47, 03:15](2024 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:10, 08:35] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:49, 03:07](1993 MB) - -PASS -- COMPILE 'atml_intel' [09:10, 08:24] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:56, 05:29](1905 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:55, 05:36](1903 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:35, 03:12](1164 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:29] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:50, 04:54](1919 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 10:30] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:45, 01:37](1965 MB) - -PASS -- COMPILE 'atmaero_intel' [08:11, 07:41] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:43, 03:45](2026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:42, 04:18](1804 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 04:20](1816 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:34] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:23, 16:19](4602 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:53] -PASS -- TEST 'control_c48_gnu' [10:36, 09:27](1568 MB) -PASS -- TEST 'control_stochy_gnu' [03:20, 02:19](730 MB) -PASS -- TEST 'control_ras_gnu' [04:16, 03:43](738 MB) -PASS -- TEST 'control_p8_gnu' [04:44, 03:49](1715 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:36, 03:43](1735 MB) -PASS -- TEST 'control_flake_gnu' [05:17, 04:30](808 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 04:51] -PASS -- TEST 'rap_control_gnu' [08:40, 07:51](1095 MB) -PASS -- TEST 'rap_decomp_gnu' [08:31, 07:51](1082 MB) -PASS -- TEST 'rap_2threads_gnu' [07:33, 07:02](1119 MB) -PASS -- TEST 'rap_restart_gnu' [04:38, 03:55](884 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:36, 07:41](1082 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 07:50](1095 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:37, 05:48](883 MB) -PASS -- TEST 'hrrr_control_gnu' [04:41, 03:59](1073 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:41, 04:00](1134 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:30, 03:44](1035 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:36, 04:04](1074 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:17, 02:13](880 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:17, 02:00](934 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:50, 07:39](1078 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:10, 07:03] -PASS -- TEST 'control_diag_debug_gnu' [02:30, 01:09](1631 MB) -PASS -- TEST 'regional_debug_gnu' [07:25, 06:40](1119 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:16, 02:03](1105 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:17, 01:54](1101 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 01:55](1099 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:16, 02:03](1103 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:22, 02:08](1273 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:16, 03:03](1102 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:16, 02:02](1105 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 01:58](1097 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:17, 01:15](730 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:22](729 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:29, 01:31](1729 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:17, 02:04](1106 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:11](1105 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:50, 03:21](1107 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:49] -PASS -- TEST 'control_wam_debug_gnu' [05:30, 05:06](1573 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 04:04] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:29, 07:22](967 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:48, 03:48](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:42, 06:52](997 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:37, 03:29](892 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:34, 03:54](951 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:36, 05:27](863 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:17, 01:59](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:37, 02:34](1270 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:29, 01:06](1178 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:28, 01:25](927 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:35] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:27, 04:24](990 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:11, 11:40] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:59](980 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:17, 01:56](973 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:28, 05:36](1290 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:27, 05:47](977 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:17](1198 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:25, 05:38](1360 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:11, 12:03] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:16, 01:59](1008 MB) - -PASS -- COMPILE 's2swa_gnu' [20:11, 19:53] -FAILED: TEST TIMED OUT -- TEST 'cpld_control_p8_gnu' [, ]( MB) - -PASS -- COMPILE 's2s_gnu' [20:11, 19:06] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:44, 04:46](2760 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:40] -FAILED: TEST TIMED OUT -- TEST 'cpld_debug_p8_gnu' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:48] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:42, 25:31](2893 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:39] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:36, 12:02](3042 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 15:22] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:14, 02:15](764 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:11, 10:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:12, 08:10](2139 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:17, 13:28](1990 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:37, 13:56](2288 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:33, 06:29](1303 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:59, 14:51](1924 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:35, 12:57](2003 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:11] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:19, 20:32](1977 MB) + +PASS -- COMPILE 's2swa_intel' [11:11, 10:46] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:03, 08:07](2194 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:15, 07:56](2190 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:17, 04:17](1994 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:00, 08:04](2208 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:19, 04:23](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:59, 09:09](2550 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:59, 08:30](2185 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:24](2089 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:20, 08:21](2194 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:05, 16:03](2982 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:44, 05:47](2934 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:38, 09:44](3807 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:07, 05:50](3640 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:07, 05:20](2159 MB) + +PASS -- COMPILE 's2sw_intel' [11:11, 11:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:53, 07:05](2036 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:09, 04:31](2082 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:09, 07:22](2220 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:00] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:10, 05:10](2068 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:05, 04:01](2077 MB) + +PASS -- COMPILE 's2s_intel' [09:11, 08:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:45, 07:01](3108 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 02:08](3079 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:13](2517 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 18:06] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 07:42](2200 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:57] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:01, 13:51](2046 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:15, 06:45](1377 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:04, 15:26](1964 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:47] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:09, 22:33](2026 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:19, 02:54](718 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:36, 02:22](1610 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:38, 02:32](1620 MB) +PASS -- TEST 'control_latlon_intel' [03:29, 02:26](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:35, 02:26](1604 MB) +PASS -- TEST 'control_c48_intel' [07:36, 06:50](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 05:48](846 MB) +PASS -- TEST 'control_c192_intel' [09:48, 08:56](1760 MB) +PASS -- TEST 'control_c384_intel' [10:29, 08:57](2040 MB) +PASS -- TEST 'control_c384gdas_intel' [09:15, 06:56](1525 MB) +PASS -- TEST 'control_stochy_intel' [02:19, 01:23](674 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:36, 00:50](534 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:21](667 MB) +PASS -- TEST 'control_iovr4_intel' [02:19, 02:03](666 MB) +PASS -- TEST 'control_iovr5_intel' [02:21, 02:06](666 MB) +PASS -- TEST 'control_p8_intel' [03:58, 02:36](1898 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 02:35](1904 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:43](1901 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:30](1161 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:47, 02:35](1890 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:02, 01:31](1180 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:48, 02:39](1901 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:44, 02:25](1995 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:35, 04:27](1913 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 03:31](1975 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:55, 02:38](1902 MB) +PASS -- TEST 'merra2_thompson_intel' [04:04, 02:53](1919 MB) +PASS -- TEST 'regional_control_intel' [05:34, 04:40](1199 MB) +PASS -- TEST 'regional_restart_intel' [03:33, 02:38](1179 MB) +PASS -- TEST 'regional_decomp_intel' [05:28, 04:56](1199 MB) +PASS -- TEST 'regional_2threads_intel' [03:29, 03:03](1164 MB) +PASS -- TEST 'regional_noquilt_intel' [05:37, 04:31](1526 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 04:41](1197 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:33, 04:45](1195 MB) +PASS -- TEST 'regional_wofs_intel' [06:31, 05:37](2089 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 08:04] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:45, 06:40](1225 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:53, 03:26](1408 MB) +PASS -- TEST 'rap_decomp_intel' [07:45, 06:56](1160 MB) +PASS -- TEST 'rap_2threads_intel' [07:45, 06:10](1376 MB) +PASS -- TEST 'rap_restart_intel' [05:09, 03:29](1160 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:45, 06:39](1213 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:45, 06:53](1162 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 05:00](1199 MB) +PASS -- TEST 'hrrr_control_intel' [04:45, 03:25](1070 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:46, 03:31](1048 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:45, 03:10](1119 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:32, 01:51](1023 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:27](1215 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:24, 07:34](2015 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:25](2167 MB) + +PASS -- COMPILE 'csawmg_intel' [08:16, 07:16] +PASS -- TEST 'control_csawmg_intel' [06:36, 05:27](1048 MB) +PASS -- TEST 'control_ras_intel' [03:19, 02:49](856 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:12] +PASS -- TEST 'control_csawmg_gnu' [07:43, 06:48](1071 MB) + +PASS -- COMPILE 'wam_intel' [08:16, 07:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:42, 10:18](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 13:48] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:55, 02:20](1906 MB) +PASS -- TEST 'regional_control_faster_intel' [05:31, 04:16](1202 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:18] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 02:18](1628 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:36, 02:15](1640 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:21, 02:36](843 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:20](833 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:30, 04:31](1166 MB) +PASS -- TEST 'control_ras_debug_intel' [03:21, 02:18](850 MB) +PASS -- TEST 'control_diag_debug_intel' [03:38, 02:15](1692 MB) +PASS -- TEST 'control_debug_p8_intel' [04:38, 03:15](1924 MB) +PASS -- TEST 'regional_debug_intel' [15:31, 14:58](1158 MB) +PASS -- TEST 'rap_control_debug_intel' [04:20, 04:04](1231 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:22, 04:02](1223 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:22, 04:02](1235 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:19, 04:04](1233 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:19, 03:59](1231 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:32, 04:10](1305 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:03](1240 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:11](1233 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:19, 04:03](1234 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:20, 04:01](1229 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:20, 04:05](1231 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:04](1236 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:25, 06:39](1220 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 03:58](1219 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:53](1232 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:20, 04:03](1233 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 07:04](1235 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:15, 04:41] +PASS -- TEST 'control_csawmg_debug_gnu' [03:38, 02:15](1056 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 02:54] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 07:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:52, 03:14](1278 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:44, 05:24](1133 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 02:52](1021 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:48, 05:09](1271 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:41, 02:37](1033 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:42, 03:07](995 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:46, 04:01](1098 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:25, 01:35](956 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:48, 01:42](1301 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:40, 00:43](1218 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:37, 01:05](1168 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:36, 03:49](1098 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:02] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:09](1108 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 04:04](1115 MB) +PASS -- TEST 'conus13km_debug_intel' [13:42, 12:14](1366 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:38, 12:18](1019 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:36, 07:16](1253 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:37, 12:12](1423 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:55] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:27, 04:10](1164 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 09:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:24](878 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:24, 05:09](1276 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:18, 06:23](950 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 14:03](985 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:12, 15:07](1006 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:00, 05:24](611 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:25, 06:50](627 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:52, 02:32](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:16, 07:22](540 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:50, 03:52](626 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:38](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:58, 04:48](678 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:28, 01:04](453 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:21] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:51, 11:23](647 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:16] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:58, 16:18](731 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:06, 16:47](815 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:35] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 09:59](823 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:10, 09:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:15, 05:22](951 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:09, 05:30](933 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:52, 16:23](1338 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:39] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:12](1137 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:19](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:04](1012 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 02:11](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:10](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:07](1146 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:09](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:04](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:04, 04:55](1153 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:59, 04:52](1155 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:11](1161 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:06](2442 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 03:10](2433 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 02:48] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:10](1075 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:39] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:13](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:50](338 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:27, 00:48](584 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:30](585 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:14, 08:01] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:00, 03:18](2027 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 07:20] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:57, 03:05](1993 MB) + +PASS -- COMPILE 'atml_intel' [09:12, 08:58] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:10, 05:40](1897 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:41](1906 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:55, 02:59](1149 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:21] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 05:14](1936 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:32] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:54, 01:37](1951 MB) + +PASS -- COMPILE 'atmaero_intel' [08:11, 08:02] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:47, 03:44](2030 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:51, 04:14](1814 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:49, 04:19](1814 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:11, 03:07] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:40, 16:35](4597 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 05:45] +PASS -- TEST 'control_c48_gnu' [10:38, 09:23](1572 MB) +PASS -- TEST 'control_stochy_gnu' [03:22, 02:20](729 MB) +PASS -- TEST 'control_ras_gnu' [04:18, 03:46](734 MB) +PASS -- TEST 'control_p8_gnu' [04:54, 03:50](1712 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:44, 03:43](1718 MB) +PASS -- TEST 'control_flake_gnu' [05:21, 04:27](807 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 05:21] +PASS -- TEST 'rap_control_gnu' [08:42, 07:41](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [08:42, 07:58](1083 MB) +PASS -- TEST 'rap_2threads_gnu' [08:41, 07:10](1127 MB) +PASS -- TEST 'rap_restart_gnu' [04:58, 03:56](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:54, 07:39](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 07:54](1088 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:00, 05:43](884 MB) +PASS -- TEST 'hrrr_control_gnu' [04:42, 04:00](1075 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:41, 04:02](1137 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:37, 03:35](1043 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 03:55](1072 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:24, 02:06](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:24, 02:00](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:59, 07:36](1081 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:15, 09:52] +PASS -- TEST 'control_diag_debug_gnu' [02:38, 01:16](1632 MB) +PASS -- TEST 'regional_debug_gnu' [07:30, 06:42](1120 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:19, 02:02](1103 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:25, 01:54](1096 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:22, 01:55](1103 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:02](1103 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:29, 02:03](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:22, 03:04](1106 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:00](1109 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:19, 01:54](1100 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:25](731 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:21](728 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:32, 01:23](1755 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:56](1106 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:14](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:56, 03:23](1110 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:37] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:30] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:35, 07:15](964 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:04, 03:57](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:50, 06:41](972 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:31](892 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:39, 03:56](952 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:01, 05:25](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:26, 01:57](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:45, 02:39](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:42, 01:03](1177 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:41, 01:26](931 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 12:00] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:35, 04:24](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:11, 09:24] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:21, 01:58](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:21, 01:54](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:41, 05:38](1284 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:38, 05:40](962 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:31, 03:23](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:38](1352 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:02] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:22, 02:09](1008 MB) + +PASS -- COMPILE 's2swa_gnu' [19:11, 18:41] + +PASS -- COMPILE 's2s_gnu' [17:11, 16:39] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:05, 04:49](3126 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:55] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:15] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:18, 25:50](3035 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 05:07] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:53, 11:55](3067 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 16:03] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:16, 02:16](764 MB) SYNOPSIS: -Starting Date/Time: 20240629 10:38:43 -Ending Date/Time: 20240629 12:42:48 -Total Time: 02h:04m:27s +Starting Date/Time: 20240722 22:35:45 +Ending Date/Time: 20240723 00:04:32 +Total Time: 01h:29m:44s Compiles Completed: 57/57 -Tests Completed: 244/246 +Tests Completed: 243/244 Failed Tests: -* TEST cpld_control_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_118853/cpld_control_p8_gnu/err -* TEST cpld_debug_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_118853/cpld_debug_p8_gnu/err +* TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2354/tests/logs/log_hercules/run_control_wam_debug_gnu.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -423,3 +419,65 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: FAILURE ====END OF HERCULES REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +ec399e628231e03101314fdb378214c340cf96cc + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 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) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 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-20240722 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3970037 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:54] +PASS -- TEST 'control_wam_debug_gnu' [06:27, 05:17](1569 MB) + +SYNOPSIS: +Starting Date/Time: 20240723 05:32:03 +Ending Date/Time: 20240723 05:42:56 +Total Time: 00h:10m:54s +Compiles Completed: 1/1 +Tests Completed: 1/1 + +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==== diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index ad15ed90b7..dd22fbd906 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: -552b40ba9030e83e8f1c6245970ad5b13769e707 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) - 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,254 +35,254 @@ 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: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_358144 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1587621 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [40:15, 40:05] ( 1 warnings 1382 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 07:30](2011 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:16, 49:49] ( 1 warnings 1426 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:04, 21:18](1889 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:08, 22:31](2021 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:45, 10:56](1132 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:43, 24:35](1850 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:17, 53:43] ( 1 warnings 1423 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:51, 21:02](1870 MB) - -PASS -- COMPILE 's2swa_intel' [41:15, 40:56] ( 1380 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:23, 08:25](2012 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:52, 08:31](2004 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:00, 04:57](1699 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:28, 08:29](2058 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 04:59](1695 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:23, 08:14](2308 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:23, 08:12](2042 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:45, 07:03](2002 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:53, 08:27](2037 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:37, 08:20](1990 MB) - -PASS -- COMPILE 's2sw_intel' [39:15, 38:28] ( 1278 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 06:18](1894 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:01, 06:59](1959 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:25] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:52, 11:14](2061 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:07] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:15, 07:56](1907 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:13, 34:18] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 06:30](1964 MB) - -PASS -- COMPILE 's2s_intel' [35:16, 34:36] ( 1015 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [15:07, 13:23](3059 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:08, 04:07](3040 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:01, 02:15](2461 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:24, 34:26] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:55, 08:02](2055 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [53:18, 52:53] ( 1338 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:59, 21:36](1905 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:49, 11:00](1134 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:34, 24:49](1886 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:25] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:44, 32:26](1894 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:18, 37:14] ( 1 warnings 1147 remarks ) -PASS -- TEST 'control_flake_intel' [09:35, 04:34](650 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:18, 03:59](1558 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:21, 04:10](1560 MB) -PASS -- TEST 'control_latlon_intel' [13:11, 03:48](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:22, 04:09](1549 MB) -PASS -- TEST 'control_c48_intel' [17:29, 12:03](1736 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:43, 10:17](854 MB) -PASS -- TEST 'control_c192_intel' [24:36, 14:24](1679 MB) -PASS -- TEST 'control_c384_intel' [24:33, 18:05](1817 MB) -PASS -- TEST 'control_c384gdas_intel' [20:36, 13:36](1016 MB) -PASS -- TEST 'control_stochy_intel' [07:34, 02:13](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:34, 01:23](435 MB) -PASS -- TEST 'control_lndp_intel' [06:35, 02:08](603 MB) -PASS -- TEST 'control_iovr4_intel' [08:41, 03:25](601 MB) -PASS -- TEST 'control_iovr5_intel' [08:38, 03:24](602 MB) -PASS -- TEST 'control_p8_intel' [13:42, 04:46](1814 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [15:09, 04:47](1852 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [13:59, 04:41](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [13:30, 02:49](1062 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:46, 04:32](1848 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:56](1076 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:45, 04:50](1828 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:44, 04:44](1935 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:17, 08:02](1838 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:59, 05:58](1904 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:57, 04:52](1855 MB) -PASS -- TEST 'merra2_thompson_intel' [16:17, 05:15](1851 MB) -PASS -- TEST 'regional_control_intel' [15:11, 08:14](1013 MB) -PASS -- TEST 'regional_restart_intel' [05:42, 04:35](1006 MB) -PASS -- TEST 'regional_decomp_intel' [14:12, 08:33](997 MB) -PASS -- TEST 'regional_2threads_intel' [11:11, 06:43](1004 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [13:18, 08:11](1019 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [16:11, 08:20](1012 MB) - -PASS -- COMPILE 'rrfs_intel' [36:15, 34:54] ( 3 warnings 1114 remarks ) -PASS -- TEST 'rap_control_intel' [16:15, 10:09](995 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 05:37](1225 MB) -PASS -- TEST 'rap_decomp_intel' [12:02, 10:43](987 MB) -PASS -- TEST 'rap_2threads_intel' [11:33, 09:41](1078 MB) -PASS -- TEST 'rap_restart_intel' [08:27, 05:20](992 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:14, 10:07](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:28, 10:47](986 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:36, 07:37](1001 MB) -PASS -- TEST 'hrrr_control_intel' [12:30, 05:17](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [14:11, 05:23](987 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:06, 04:50](1062 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:30, 02:51](927 MB) -PASS -- TEST 'rrfs_v1beta_intel' [16:36, 09:57](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 12:24](1945 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:35, 12:14](1931 MB) - -PASS -- COMPILE 'csawmg_intel' [33:15, 32:15] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [17:48, 08:53](959 MB) -PASS -- TEST 'control_ras_intel' [13:29, 04:25](668 MB) - -PASS -- COMPILE 'wam_intel' [33:15, 32:14] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [16:58, 14:20](1622 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:22, 13:04] ( 1298 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:44, 04:23](1843 MB) -PASS -- TEST 'regional_control_faster_intel' [09:51, 07:37](1010 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 07:14] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:56, 03:19](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:02, 03:17](1561 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:32, 03:49](765 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:32, 03:25](768 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:54, 05:55](1082 MB) -PASS -- TEST 'control_ras_debug_intel' [05:33, 03:30](779 MB) -PASS -- TEST 'control_diag_debug_intel' [09:00, 03:26](1626 MB) -PASS -- TEST 'control_debug_p8_intel' [09:05, 04:18](1852 MB) -PASS -- TEST 'regional_debug_intel' [26:59, 22:54](1021 MB) -PASS -- TEST 'rap_control_debug_intel' [09:36, 06:06](1152 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:36, 06:00](1146 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:36, 06:04](1151 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:37, 06:05](1151 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:32, 06:04](1157 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:42, 06:25](1239 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:25, 06:13](1149 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:25, 06:14](1155 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:10](1155 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:30, 06:07](1148 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:30, 05:59](1152 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:29, 06:05](1158 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:27, 09:56](1157 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:27, 06:02](1150 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:31, 07:30](1157 MB) -PASS -- TEST 'rap_flake_debug_intel' [10:32, 06:06](1153 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:37, 10:35](1149 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:12, 04:40] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [21:06, 16:34](1634 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 29:53] ( 3 warnings 1027 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:28, 05:23](1082 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:02, 08:23](901 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 04:19](881 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:27, 07:59](962 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:14, 04:07](912 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:15, 04:42](856 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:05, 06:18](903 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:20](844 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [50:17, 49:52] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:06, 03:03](1105 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:49, 01:22](1055 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:39](1022 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 30:56] ( 3 warnings 1047 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:56, 05:25](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:30] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 06:00](1031 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 05:53](1035 MB) -PASS -- TEST 'conus13km_debug_intel' [20:07, 18:19](1176 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:07, 18:30](857 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:00, 10:38](1085 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:01, 18:23](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 04:14] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:28, 06:15](1071 MB) - -PASS -- COMPILE 'hafsw_intel' [44:17, 38:43] ( 1 warnings 1426 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [12:28, 07:02](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:38, 06:29](1091 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:50, 09:18](780 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [21:31, 16:21](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:52, 18:16](820 MB) -PASS -- TEST 'gnv1_nested_intel' [39:03, 06:55](1678 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:16, 33:37] ( 1267 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:33, 08:39](774 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:39, 08:42](753 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:30] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:36](1065 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:26, 02:17](1033 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:25, 03:30](924 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:25, 03:36](927 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:26, 03:35](924 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:28, 03:37](1066 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:28, 03:35](1060 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 03:33](924 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:26, 07:55](884 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [16:25, 07:48](842 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:22, 03:36](1062 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:27, 05:02](2337 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 05:05](2381 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:40] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:25, 07:59](1014 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:17] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 03:38](1061 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:50] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:40, 01:44](233 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:24](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:51](254 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [36:17, 33:44] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:30, 05:46](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:14, 33:16] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [23:41, 05:37](1888 MB) - -PASS -- COMPILE 'atml_intel' [42:16, 41:39] ( 8 warnings 1185 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:45, 08:39](1847 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:49, 08:47](1831 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 04:25](1070 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 05:54] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:51, 08:17](1875 MB) - -PASS -- COMPILE 'atmw_intel' [35:15, 34:23] ( 1259 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:38, 03:18](1859 MB) - -PASS -- COMPILE 'atmaero_intel' [50:19, 32:49] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:29, 05:33](1933 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:31, 06:27](1721 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:16, 06:29](1727 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:15, 40:03] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:46, 07:34](2007 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:17, 48:44] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:59, 21:35](1897 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:23, 23:36](2010 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:45, 11:05](1115 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:34, 24:37](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:17, 49:39] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:55, 21:07](1890 MB) + +PASS -- COMPILE 's2swa_intel' [41:15, 40:34] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:33, 08:04](2056 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:44, 07:58](2051 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:41, 05:17](1717 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:33, 08:13](2062 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:54, 04:59](1738 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 08:05](2319 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:15, 08:06](2026 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:20, 06:55](2006 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:45, 07:57](2063 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:36, 07:25](2036 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:12] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 06:37](1863 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:57, 06:29](1981 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:43] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:47, 11:07](2035 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:19] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:16, 07:49](1936 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:15, 34:44] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:46, 06:14](1957 MB) + +PASS -- COMPILE 's2s_intel' [36:13, 35:04] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:27, 12:25](3075 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:04, 03:55](3060 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:03, 02:28](2483 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:20, 33:36] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:08, 07:56](2046 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:21, 48:39] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:41, 22:07](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:45, 11:11](1129 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:39, 25:02](1889 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:21] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:51, 32:50](1898 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:15, 37:50] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:38, 04:33](650 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:24, 03:55](1550 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:30, 04:05](1560 MB) +PASS -- TEST 'control_latlon_intel' [05:20, 03:55](1552 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:30, 04:12](1559 MB) +PASS -- TEST 'control_c48_intel' [13:37, 11:48](1735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:54, 09:13](853 MB) +PASS -- TEST 'control_c192_intel' [16:44, 14:26](1685 MB) +PASS -- TEST 'control_c384_intel' [20:44, 17:57](1829 MB) +PASS -- TEST 'control_c384gdas_intel' [19:55, 13:24](1015 MB) +PASS -- TEST 'control_stochy_intel' [03:37, 02:19](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:31, 01:21](441 MB) +PASS -- TEST 'control_lndp_intel' [03:38, 02:14](603 MB) +PASS -- TEST 'control_iovr4_intel' [04:42, 03:27](599 MB) +PASS -- TEST 'control_iovr5_intel' [04:41, 03:27](603 MB) +PASS -- TEST 'control_p8_intel' [06:47, 04:30](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 04:37](1852 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:05, 04:28](1844 MB) +PASS -- TEST 'control_restart_p8_intel' [05:11, 02:58](1057 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:49, 04:30](1841 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 03:03](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:49, 04:37](1837 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:49, 04:25](1940 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:27, 07:39](1855 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:26, 05:49](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:02, 04:37](1842 MB) +PASS -- TEST 'merra2_thompson_intel' [07:20, 04:57](1853 MB) +PASS -- TEST 'regional_control_intel' [09:18, 08:08](1016 MB) +PASS -- TEST 'regional_restart_intel' [05:47, 04:28](1013 MB) +PASS -- TEST 'regional_decomp_intel' [10:19, 08:30](1017 MB) +PASS -- TEST 'regional_2threads_intel' [07:21, 05:32](1009 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:27, 08:13](1024 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [12:52, 07:55](1018 MB) + +PASS -- COMPILE 'rrfs_intel' [36:16, 35:05] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [12:05, 10:10](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 05:44](1217 MB) +PASS -- TEST 'rap_decomp_intel' [12:05, 10:53](984 MB) +PASS -- TEST 'rap_2threads_intel' [11:32, 09:40](1090 MB) +PASS -- TEST 'rap_restart_intel' [07:31, 05:18](995 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:13, 10:10](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:13, 10:53](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:32, 07:54](992 MB) +PASS -- TEST 'hrrr_control_intel' [07:04, 05:25](990 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 05:40](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:39, 04:54](1066 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:49](912 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:42, 09:58](991 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:36, 12:42](1929 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:36, 12:18](1927 MB) + +PASS -- COMPILE 'csawmg_intel' [33:16, 32:25] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:51, 08:58](966 MB) +PASS -- TEST 'control_ras_intel' [05:30, 04:30](661 MB) + +PASS -- COMPILE 'wam_intel' [33:14, 32:37] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [16:04, 14:31](1619 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [53:17, 52:41] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:28, 04:28](1837 MB) +PASS -- TEST 'regional_control_faster_intel' [08:43, 07:35](1020 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:17] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 03:34](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:03, 03:31](1573 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:33, 03:55](776 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:33](787 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:05, 05:58](1100 MB) +PASS -- TEST 'control_ras_debug_intel' [04:32, 03:37](783 MB) +PASS -- TEST 'control_diag_debug_intel' [05:03, 03:31](1636 MB) +PASS -- TEST 'control_debug_p8_intel' [06:06, 04:20](1875 MB) +PASS -- TEST 'regional_debug_intel' [23:59, 22:56](1046 MB) +PASS -- TEST 'rap_control_debug_intel' [07:35, 06:27](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:37, 06:16](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:38, 06:28](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:37, 06:25](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 06:25](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:49, 06:48](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:35, 06:28](1162 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 06:29](1163 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:35, 06:24](1164 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:11](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:08](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 06:10](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:32, 10:10](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 06:05](1160 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:31, 07:34](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:32, 06:21](1158 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:36, 10:44](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:41] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:08, 16:50](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 30:14] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:44, 05:19](1086 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:11, 08:26](905 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:18, 04:29](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:10, 07:58](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:18, 04:05](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:18, 04:43](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:07, 06:24](898 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 02:27](852 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:15, 48:39] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:16, 03:04](1112 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:00, 01:23](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:39](1029 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 30:54] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:03, 05:39](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:13, 04:45] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 06:13](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 06:02](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [20:14, 18:37](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:12, 18:51](872 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:05, 10:51](1102 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:07, 18:42](1226 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:37] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:39, 06:15](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [39:15, 38:11] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:25, 07:07](710 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:34, 06:45](1083 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:03, 09:32](769 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:29, 16:35](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:43, 18:17](819 MB) +PASS -- TEST 'gnv1_nested_intel' [11:08, 07:12](1671 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:15, 33:20] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:36, 08:49](777 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:38, 08:55](750 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:27] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:42](1060 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:33, 02:16](1029 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:42](932 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:48](921 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:50](923 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:39](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:44](1046 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:28, 03:42](924 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:01, 08:02](896 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:49, 08:01](841 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:44](1064 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 05:09](2398 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 05:11](2355 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:36] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:29, 08:03](1007 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:09] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 03:41](1068 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:54] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:44, 01:44](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:25](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 01:05](252 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:16, 33:50] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:35, 05:32](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:16, 33:32] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:35, 05:35](1896 MB) + +PASS -- COMPILE 'atml_intel' [38:17, 37:19] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:56, 09:19](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:52, 09:02](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:04, 05:06](1073 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:45] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:53, 08:15](1886 MB) + +PASS -- COMPILE 'atmw_intel' [36:18, 35:11] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 03:02](1868 MB) + +PASS -- COMPILE 'atmaero_intel' [34:14, 33:02] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:37, 06:01](1942 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:36, 06:22](1724 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:38](1741 MB) SYNOPSIS: -Starting Date/Time: 20240630 22:41:54 -Ending Date/Time: 20240701 02:59:19 -Total Time: 04h:17m:56s +Starting Date/Time: 20240723 05:48:30 +Ending Date/Time: 20240723 09:45:37 +Total Time: 03h:57m:43s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 3589f30884..13807a10e1 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -552f487a2333cfd64aa1fcbdebc380f9158b9e52 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) - 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,285 +35,285 @@ 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-20240614 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_770352 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3439478 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:10, 18:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:47, 14:35](2087 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:11, 25:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:23, 18:11](1962 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:10, 18:49](2128 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 08:45](1198 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:52, 20:18](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:11, 25:36] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:06, 17:49](1949 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:36, 10:39] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:54, 26:58](1928 MB) - -PASS -- COMPILE 's2swa_intel' [19:10, 18:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:35, 14:41](2136 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:47, 14:18](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:15, 08:23](1813 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:35, 14:35](2153 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:15, 08:18](1710 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:38, 13:11](2428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:35, 14:39](2126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:37, 11:56](2041 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:50, 14:37](2135 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:31, 16:24](2717 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:56, 09:27](2727 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:15, 11:45](3639 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:29, 07:30](3486 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:31, 06:01](2108 MB) - -PASS -- COMPILE 's2sw_intel' [19:10, 18:14] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:25, 13:40](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:30, 04:54](2030 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:36, 10:54] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:20, 08:48](2155 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:36, 10:22] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:09, 06:07](1999 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:10, 16:18] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:16, 04:50](2045 MB) - -PASS -- COMPILE 's2s_intel' [16:10, 15:34] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:55, 10:26](3088 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:56, 03:21](3068 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:51, 02:07](2498 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:16, 24:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:28, 15:06](2138 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:16, 20:20] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:20, 18:41](2000 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:16, 08:47](1257 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 20:17](1918 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:16, 07:02] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:01, 28:56](1959 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:10, 12:41] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:21, 03:41](689 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:40, 03:15](1584 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 03:19](1599 MB) -PASS -- TEST 'control_latlon_intel' [04:41, 03:12](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:49, 03:10](1588 MB) -PASS -- TEST 'control_c48_intel' [10:49, 09:33](1741 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:53](848 MB) -PASS -- TEST 'control_c192_intel' [13:49, 11:30](1736 MB) -PASS -- TEST 'control_c384_intel' [16:02, 13:51](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [14:53, 10:19](1359 MB) -PASS -- TEST 'control_stochy_intel' [02:24, 01:49](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:00, 01:02](476 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:43](647 MB) -PASS -- TEST 'control_iovr4_intel' [03:30, 02:52](644 MB) -PASS -- TEST 'control_iovr5_intel' [03:29, 02:37](647 MB) -PASS -- TEST 'control_p8_intel' [05:12, 03:31](1891 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:23, 03:28](1888 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 03:15](1884 MB) -PASS -- TEST 'control_restart_p8_intel' [03:12, 01:59](1088 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:16, 03:21](1874 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:13, 01:58](1128 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:10, 03:23](1866 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:19, 03:31](1972 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:48](1877 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:45](1948 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:26, 03:26](1894 MB) -PASS -- TEST 'merra2_thompson_intel' [05:39, 03:38](1888 MB) -PASS -- TEST 'regional_control_intel' [07:41, 06:17](1086 MB) -PASS -- TEST 'regional_restart_intel' [05:36, 04:57](1088 MB) -PASS -- TEST 'regional_decomp_intel' [08:16, 06:39](1085 MB) -PASS -- TEST 'regional_2threads_intel' [05:34, 04:33](1070 MB) -PASS -- TEST 'regional_noquilt_intel' [07:40, 06:52](1380 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 06:42](1091 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:42, 07:06](1086 MB) -PASS -- TEST 'regional_wofs_intel' [08:39, 08:02](1910 MB) - -PASS -- COMPILE 'rrfs_intel' [12:10, 12:06] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:19, 08:23](1053 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 05:16](1311 MB) -PASS -- TEST 'rap_decomp_intel' [10:11, 08:38](1022 MB) -PASS -- TEST 'rap_2threads_intel' [09:55, 08:28](1165 MB) -PASS -- TEST 'rap_restart_intel' [06:28, 04:15](1043 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:14, 08:25](1055 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 08:46](1026 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:32, 06:12](1072 MB) -PASS -- TEST 'hrrr_control_intel' [06:18, 04:27](1030 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:14, 04:29](1027 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:04, 04:17](1101 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:34, 02:17](952 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:38, 09:32](1049 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:36, 10:20](1988 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:33, 10:03](2023 MB) - -PASS -- COMPILE 'csawmg_intel' [12:10, 11:16] -PASS -- TEST 'control_csawmg_intel' [07:37, 06:28](1021 MB) -PASS -- TEST 'control_ras_intel' [04:25, 03:23](719 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 11:22] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 12:11](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:10, 19:18] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:21, 03:10](1882 MB) -PASS -- TEST 'regional_control_faster_intel' [06:35, 06:00](1091 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 07:58] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:50, 02:43](1606 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:40](1606 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:07](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:48](811 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:22](1130 MB) -PASS -- TEST 'control_ras_debug_intel' [03:23, 02:49](811 MB) -PASS -- TEST 'control_diag_debug_intel' [03:51, 02:43](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [03:52, 03:08](1904 MB) -PASS -- TEST 'regional_debug_intel' [19:04, 17:44](1092 MB) -PASS -- TEST 'rap_control_debug_intel' [05:25, 04:57](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:26, 04:44](1197 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 04:51](1202 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:26, 05:00](1203 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 05:02](1202 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:34, 05:06](1286 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:21, 05:06](1206 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:58](1202 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:25, 04:56](1201 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:20, 04:52](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:48](1202 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:53](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 07:46](1200 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 04:50](1189 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 06:01](1204 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:51](1201 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:25](1206 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:12] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:42, 13:33](1677 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:13] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:47](1167 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:59, 06:55](1005 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:34, 03:40](932 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:52, 07:06](1085 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 03:33](957 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:07, 03:49](909 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:30, 05:14](983 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:32, 02:00](886 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 14:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:55, 02:36](1182 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:49, 01:10](1128 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:51, 01:29](1084 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 11:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:26](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 05:15] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:46](1078 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:39](1073 MB) -PASS -- TEST 'conus13km_debug_intel' [15:50, 14:30](1225 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:48, 14:33](938 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:37, 08:30](1170 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 14:14](1292 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:24] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:48](1126 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 14:15] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:11, 05:48](757 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 06:08](1137 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:20, 07:26](836 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:10, 23:57](872 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:23, 25:38](888 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:04, 06:57](510 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:31, 08:18](525 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 03:22](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:21, 09:30](489 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:54, 04:38](539 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 04:25](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:41](596 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:32](411 MB) -PASS -- TEST 'gnv1_nested_intel' [07:10, 04:13](1721 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:51] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:49, 13:03](586 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:11, 22:09] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:02, 12:57](657 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:03, 12:32](742 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:48] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:24, 08:41](728 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:11, 13:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:19, 07:19](834 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:17, 07:17](815 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:22](1199 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:26] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:54](1136 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:51](1106 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:49](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:51](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:52](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:58](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:56](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:47](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 06:23](1027 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:07, 06:22](1004 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:56](1153 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 04:14](2438 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:17](2374 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:14, 05:47] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:27](1073 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 09:16] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:56](1144 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:32] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:59](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:54](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:35](318 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:12, 12:34] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:05, 04:00](1976 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 12:36] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:48](1954 MB) - -PASS -- COMPILE 'atml_intel' [15:12, 14:13] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:31, 04:39](1868 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:22, 04:45](1872 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:36](1081 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:13, 07:08] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:18, 05:56](1892 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 12:04] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:14, 02:04](1916 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 11:41] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:09, 04:30](1993 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:10, 05:16](1773 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:59, 05:15](1782 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 05:06] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:55, 20:55](4551 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:35, 14:21](2084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 18:07](1965 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:04, 19:08](2126 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:59, 09:03](1206 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:46, 20:19](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:12, 20:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:44, 17:45](1963 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:11] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:40, 27:12](1942 MB) + +PASS -- COMPILE 's2swa_intel' [17:12, 16:38] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:27, 14:24](2148 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:34, 14:43](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:40, 07:57](1819 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:37, 13:56](2157 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:40, 07:51](1715 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:29, 13:06](2428 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:27, 14:15](2129 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:25, 12:07](2045 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:35, 14:33](2136 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:38, 15:55](2725 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:00, 08:52](2732 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:30, 11:30](3657 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:00, 07:09](3503 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:21, 05:52](2118 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 15:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:11, 13:25](1984 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:40](2046 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 08:00] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:25, 08:50](2180 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 06:09](2007 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:39] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:25, 04:41](2052 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 14:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:02, 09:42](3107 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:18](3086 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:57, 02:01](2521 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:11, 22:50] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:37, 14:28](2138 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:07, 18:12](1992 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:23, 09:00](1247 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:23](1920 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:57] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:10, 28:49](1977 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:24, 03:38](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 03:02](1590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:50, 03:09](1595 MB) +PASS -- TEST 'control_latlon_intel' [03:42, 03:04](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 03:06](1589 MB) +PASS -- TEST 'control_c48_intel' [10:50, 09:13](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 07:56](860 MB) +PASS -- TEST 'control_c192_intel' [11:49, 11:09](1734 MB) +PASS -- TEST 'control_c384_intel' [14:54, 12:16](2011 MB) +PASS -- TEST 'control_c384gdas_intel' [12:41, 09:31](1357 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:48](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:51, 01:03](476 MB) +PASS -- TEST 'control_lndp_intel' [02:22, 01:42](649 MB) +PASS -- TEST 'control_iovr4_intel' [03:30, 02:42](636 MB) +PASS -- TEST 'control_iovr5_intel' [03:28, 02:36](642 MB) +PASS -- TEST 'control_p8_intel' [05:09, 03:26](1890 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:27](1883 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:25, 03:18](1890 MB) +PASS -- TEST 'control_restart_p8_intel' [03:07, 01:57](1094 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:10, 03:22](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:55](1123 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:15, 03:26](1878 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:37](1972 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:48](1882 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:47](1949 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:20, 03:28](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [05:35, 03:44](1898 MB) +PASS -- TEST 'regional_control_intel' [07:38, 06:23](1088 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 03:34](1086 MB) +PASS -- TEST 'regional_decomp_intel' [07:38, 06:46](1088 MB) +PASS -- TEST 'regional_2threads_intel' [05:37, 04:39](1080 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 06:17](1385 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:18](1083 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 06:24](1087 MB) +PASS -- TEST 'regional_wofs_intel' [08:34, 07:37](1909 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:17] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:03, 08:12](1062 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 05:08](1298 MB) +PASS -- TEST 'rap_decomp_intel' [10:03, 08:30](1022 MB) +PASS -- TEST 'rap_2threads_intel' [10:25, 08:15](1168 MB) +PASS -- TEST 'rap_restart_intel' [06:34, 04:16](1055 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:24, 08:09](1051 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:23, 08:29](1028 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 06:09](1071 MB) +PASS -- TEST 'hrrr_control_intel' [06:25, 04:15](1026 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:21, 04:21](1022 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 04:06](1098 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:51, 02:19](959 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:18, 08:03](1045 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 09:38](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:25](2025 MB) + +PASS -- COMPILE 'csawmg_intel' [12:12, 11:45] +PASS -- TEST 'control_csawmg_intel' [07:33, 06:32](1021 MB) +PASS -- TEST 'control_ras_intel' [04:21, 03:25](716 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 11:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 12:11](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:25] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:25, 03:12](1891 MB) +PASS -- TEST 'regional_control_faster_intel' [06:37, 06:06](1090 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:00] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:45](1627 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:46](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:00](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:43](819 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:20](1140 MB) +PASS -- TEST 'control_ras_debug_intel' [03:24, 02:46](820 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:42](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [04:48, 03:07](1907 MB) +PASS -- TEST 'regional_debug_intel' [18:45, 17:34](1094 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:53](1209 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:49](1195 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:54](1211 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:49](1204 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:57](1212 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:42, 05:09](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:03](1209 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 04:59](1212 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:19](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:57](1206 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:49](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 05:01](1209 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 07:48](1203 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:47](1206 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 06:06](1205 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:54](1212 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:18](1210 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 05:04] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:43, 13:29](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:00, 04:47](1165 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 07:00](999 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:43](936 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:15, 07:04](1076 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:38, 03:36](950 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:40, 03:49](902 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:27, 05:13](980 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:58](877 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:12, 18:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:50, 02:39](1195 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:12](1129 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:27](1084 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:28](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:16] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:56](1087 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:44](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [14:49, 14:11](1248 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:30](947 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:19](1177 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:36, 14:33](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:16] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:00](1143 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 14:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:15, 06:01](756 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:29, 06:19](1139 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 07:34](833 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:18](872 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:25, 28:47](887 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:04, 07:01](515 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:32, 08:22](524 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:26](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:35, 09:30](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:45](543 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:03, 04:24](548 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 05:45](597 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:35](411 MB) +PASS -- TEST 'gnv1_nested_intel' [07:12, 04:15](1727 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 06:05] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:17](596 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:11, 22:32] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:06, 12:50](675 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:05, 12:41](736 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:14, 08:45](719 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 13:21] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:21, 07:27](846 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 07:22](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:28](1205 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:34] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:56](1155 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:58](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:48](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1006 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:52](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:58](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:58](1144 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:54](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:27](1029 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 06:29](997 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:54](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:17](2441 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:24](2375 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:45] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:30](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 09:28] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:56](1138 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:20] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:01](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:56](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:35](319 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 12:02] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:09, 04:03](1975 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:46] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:07, 03:50](1965 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:15] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:50](1876 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:50](1873 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:42](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 06:29] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 05:51](1903 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 12:26] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 02:12](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:31](1993 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:09, 05:14](1782 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:18](1786 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 05:14] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:04, 21:02](4556 MB) SYNOPSIS: -Starting Date/Time: 20240628 07:41:20 -Ending Date/Time: 20240628 09:15:26 -Total Time: 01h:34m:32s +Starting Date/Time: 20240722 22:32:52 +Ending Date/Time: 20240723 00:04:05 +Total Time: 01h:32m:05s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index cd488ea707..4cafa4b74d 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -552b40ba9030e83e8f1c6245970ad5b13769e707 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) - 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,239 +35,239 @@ 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-20240614 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1727 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_192846 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [24:41, 23:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [05:41, 01:54](3095 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:28, 11:48] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:54, 02:13](1819 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:41, 01:24](1852 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [59:41, 02:04](983 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:54, 01:41](1795 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:26, 11:56] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:57, 01:12](1822 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:35] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:04, 02:04](1831 MB) - -PASS -- COMPILE 's2swa_intel' [12:27, 11:20] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:54, 01:28](3130 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:55, 01:52](3128 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:39, 00:56](3061 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:55, 01:26](3148 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:37, 00:52](3083 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:54, 00:58](3361 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:54, 01:25](3122 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:55, 01:34](3071 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:55, 01:43](3130 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:03, 05:28](4110 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [58:01, 04:13](4253 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [17:55, 01:51](3110 MB) - -PASS -- COMPILE 's2sw_intel' [36:56, 35:48] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [52:40, 01:28](1832 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [52:40, 01:32](1898 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:31, 14:46] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [28:43, 01:14](1899 MB) - -PASS -- COMPILE 's2s_intel' [15:30, 15:08] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:51, 01:33](2908 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [14:51, 01:17](2906 MB) -PASS -- TEST 'cpld_restart_c48_intel' [10:52, 00:57](2310 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:42, 22:49] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [20:33, 01:49](3128 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:34, 16:30] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:48, 01:03](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [55:30, 01:37](1002 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [52:41, 01:52](1809 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [31:47, 31:00] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:20, 01:43](1839 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [29:46, 29:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [48:10, 00:22](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [48:09, 00:58](1471 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:10, 00:54](1480 MB) -PASS -- TEST 'control_latlon_intel' [48:10, 00:52](1471 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:10, 01:31](1473 MB) -PASS -- TEST 'control_c48_intel' [48:08, 00:50](1597 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [48:09, 00:50](713 MB) -PASS -- TEST 'control_c192_intel' [48:10, 00:58](1590 MB) -PASS -- TEST 'control_c384_intel' [48:13, 01:55](1898 MB) -PASS -- TEST 'control_c384gdas_intel' [48:14, 02:15](1090 MB) -PASS -- TEST 'control_stochy_intel' [48:10, 00:23](531 MB) -PASS -- TEST 'control_stochy_restart_intel' [45:44, 00:45](332 MB) -PASS -- TEST 'control_lndp_intel' [48:10, 00:27](529 MB) -PASS -- TEST 'control_iovr4_intel' [48:10, 00:39](526 MB) -PASS -- TEST 'control_iovr5_intel' [48:09, 00:39](525 MB) -PASS -- TEST 'control_p8_intel' [48:10, 01:45](1771 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [48:10, 01:55](1761 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [48:10, 01:24](1775 MB) -PASS -- TEST 'control_restart_p8_intel' [42:42, 01:02](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [47:52, 01:14](1758 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [42:42, 01:03](920 MB) -PASS -- TEST 'control_decomp_p8_intel' [47:33, 01:21](1760 MB) -PASS -- TEST 'control_2threads_p8_intel' [46:54, 00:58](1862 MB) -PASS -- TEST 'control_p8_lndp_intel' [45:44, 00:54](1767 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [45:32, 01:58](1818 MB) -PASS -- TEST 'control_p8_mynn_intel' [45:31, 01:56](1779 MB) -PASS -- TEST 'merra2_thompson_intel' [45:18, 02:06](1773 MB) -PASS -- TEST 'regional_control_intel' [44:56, 00:50](849 MB) -PASS -- TEST 'regional_restart_intel' [38:17, 00:24](851 MB) -PASS -- TEST 'regional_decomp_intel' [44:38, 00:39](848 MB) -PASS -- TEST 'regional_2threads_intel' [44:39, 00:36](903 MB) -PASS -- TEST 'regional_noquilt_intel' [43:35, 00:20](1175 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [43:20, 00:20](855 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [43:15, 01:10](852 MB) -PASS -- TEST 'regional_wofs_intel' [43:13, 00:51](1583 MB) - -PASS -- COMPILE 'rrfs_intel' [27:42, 26:30] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [04:08, 01:38](914 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:09, 00:42](1087 MB) -PASS -- TEST 'rap_decomp_intel' [04:08, 01:23](912 MB) -PASS -- TEST 'rap_2threads_intel' [04:08, 01:35](1000 MB) -PASS -- TEST 'rap_restart_intel' [54:03, 01:02](781 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:08, 02:19](910 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:08, 01:58](909 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [53:24, 01:25](782 MB) -PASS -- TEST 'hrrr_control_intel' [04:08, 01:11](905 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:08, 01:38](904 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:09, 01:41](987 MB) -PASS -- TEST 'hrrr_control_restart_intel' [57:41, 01:15](740 MB) -PASS -- TEST 'rrfs_v1beta_intel' [04:08, 02:09](901 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [04:08, 01:00](1871 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:08, 01:13](1860 MB) - -PASS -- COMPILE 'csawmg_intel' [12:27, 12:07] -PASS -- TEST 'control_csawmg_intel' [05:26, 00:31](875 MB) -PASS -- TEST 'control_ras_intel' [05:26, 00:52](564 MB) - -PASS -- COMPILE 'wam_intel' [10:27, 09:57] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [04:24, 00:53](1569 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:34, 18:35] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [52:15, 01:57](1773 MB) -PASS -- TEST 'regional_control_faster_intel' [52:12, 01:10](849 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:21, 08:00] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [57:16, 01:08](1485 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [57:16, 01:17](1487 MB) -PASS -- TEST 'control_stochy_debug_intel' [57:16, 00:49](689 MB) -PASS -- TEST 'control_lndp_debug_intel' [57:16, 00:56](690 MB) -PASS -- TEST 'control_csawmg_debug_intel' [57:16, 01:19](1002 MB) -PASS -- TEST 'control_ras_debug_intel' [57:16, 01:05](702 MB) -PASS -- TEST 'control_diag_debug_intel' [57:16, 01:01](1550 MB) -PASS -- TEST 'control_debug_p8_intel' [57:16, 00:43](1788 MB) -PASS -- TEST 'regional_debug_intel' [57:15, 00:39](881 MB) -PASS -- TEST 'rap_control_debug_intel' [57:16, 00:28](1075 MB) -PASS -- TEST 'hrrr_control_debug_intel' [57:16, 00:35](1070 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [57:16, 00:31](1071 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [57:16, 00:28](1072 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [57:16, 00:30](1072 MB) -PASS -- TEST 'rap_diag_debug_intel' [57:16, 01:26](1155 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [57:16, 00:23](1072 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [57:16, 00:23](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [57:16, 00:26](1073 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [57:16, 00:28](1074 MB) -PASS -- TEST 'rap_noah_debug_intel' [57:16, 00:32](1073 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [57:16, 00:33](1071 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [57:16, 00:19](1069 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [57:16, 00:35](1069 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [57:16, 00:42](1079 MB) -PASS -- TEST 'rap_flake_debug_intel' [57:16, 00:37](1076 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [52:09, 02:02](1080 MB) - -PASS -- COMPILE 'wam_debug_intel' [23:38, 23:06] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [41:48, 00:22](1582 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:41, 24:17] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [39:39, 01:16](954 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [39:38, 01:31](790 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:38, 01:43](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [39:38, 01:33](861 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:39, 01:55](845 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [39:17, 01:27](788 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [31:44, 01:32](688 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [34:12, 00:19](671 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:41, 24:55] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [31:27, 01:00](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [27:36, 00:35](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [27:35, 00:29](882 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:44] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [55:54, 01:16](815 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:26, 10:23] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [40:48, 01:04](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [40:48, 01:09](950 MB) -PASS -- TEST 'conus13km_debug_intel' [40:48, 01:19](1041 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [40:48, 01:09](717 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [40:49, 00:26](1044 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:48, 01:15](1113 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [41:59, 40:25] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:14, 00:59](984 MB) - -PASS -- COMPILE 'hafsw_intel' [16:35, 16:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [31:30, 01:59](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [31:30, 01:04](965 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [31:28, 01:43](658 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [31:28, 02:21](694 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:29, 02:07](706 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:28, 00:57](642 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:29, 02:08](407 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [31:29, 01:30](284 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [31:32, 02:14](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:28, 01:33](412 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [31:28, 00:52](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [31:30, 01:43](488 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [31:29, 00:28](320 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [25:40, 25:25] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:36, 01:35](510 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [29:44, 28:46] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:07, 00:55](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:07, 01:36](711 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:34, 18:48] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:06, 01:06](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [23:38, 23:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:49, 01:49](661 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:49, 01:46](642 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [07:47, 00:37](882 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:35, 20:00] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:52, 01:09](1827 MB) - -PASS -- COMPILE 'atml_intel' [22:36, 19:43] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [11:24, 09:43] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [21:37, 20:26] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [58:25, 01:23](3027 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [58:25, 01:48](2907 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [58:25, 01:37](2920 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:24, 07:49] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [05:44, 01:39](4436 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:37, 19:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:10, 01:17](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:41, 25:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [43:05, 01:59](1824 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:55, 01:35](1853 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [24:00, 01:46](987 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:06, 01:35](1805 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [35:54, 35:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [32:52, 01:08](1821 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:40] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [03:28, 01:55](1848 MB) + +PASS -- COMPILE 's2swa_intel' [20:34, 20:17] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [48:12, 01:24](3136 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:12, 01:45](3128 MB) +PASS -- TEST 'cpld_restart_p8_intel' [39:44, 01:06](3064 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [48:12, 01:25](3152 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [39:43, 01:45](3085 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [48:12, 01:51](3367 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [48:12, 01:31](3127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [48:13, 01:29](3073 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:12, 01:37](3132 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [48:21, 04:38](4128 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:41, 04:45](4270 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [48:12, 01:37](3113 MB) + +PASS -- COMPILE 's2sw_intel' [23:40, 23:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [45:06, 01:46](1829 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [45:06, 01:57](1895 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 12:02] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:19, 01:06](1895 MB) + +PASS -- COMPILE 's2s_intel' [34:51, 33:50] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [33:54, 00:59](2924 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [33:54, 01:25](2920 MB) +PASS -- TEST 'cpld_restart_c48_intel' [29:50, 01:20](2324 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:35, 20:36] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [47:11, 01:57](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:41, 22:57] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [45:05, 00:50](1837 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:32, 01:36](1009 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:33, 01:44](1809 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [19:35, 18:56] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:52, 01:42](1859 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [29:49, 29:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [26:29, 00:25](570 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [26:29, 00:31](1468 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:29, 00:25](1481 MB) +PASS -- TEST 'control_latlon_intel' [26:29, 00:23](1476 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [26:29, 00:33](1477 MB) +PASS -- TEST 'control_c48_intel' [26:28, 01:08](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [26:28, 00:50](713 MB) +PASS -- TEST 'control_c192_intel' [26:29, 00:44](1587 MB) +PASS -- TEST 'control_c384_intel' [26:33, 01:22](1907 MB) +PASS -- TEST 'control_c384gdas_intel' [26:33, 01:54](1087 MB) +PASS -- TEST 'control_stochy_intel' [26:29, 00:25](531 MB) +PASS -- TEST 'control_stochy_restart_intel' [23:59, 01:04](334 MB) +PASS -- TEST 'control_lndp_intel' [26:29, 00:30](526 MB) +PASS -- TEST 'control_iovr4_intel' [26:29, 00:42](525 MB) +PASS -- TEST 'control_iovr5_intel' [25:48, 00:45](525 MB) +PASS -- TEST 'control_p8_intel' [23:59, 01:58](1763 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:43, 02:00](1772 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [23:02, 02:05](1770 MB) +PASS -- TEST 'control_restart_p8_intel' [18:34, 01:02](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [23:02, 02:06](1757 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [17:21, 01:05](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [22:56, 01:59](1757 MB) +PASS -- TEST 'control_2threads_p8_intel' [22:55, 01:07](1863 MB) +PASS -- TEST 'control_p8_lndp_intel' [22:40, 01:10](1776 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [22:35, 02:02](1823 MB) +PASS -- TEST 'control_p8_mynn_intel' [22:33, 01:48](1784 MB) +PASS -- TEST 'merra2_thompson_intel' [22:29, 01:54](1773 MB) +PASS -- TEST 'regional_control_intel' [22:09, 01:06](854 MB) +PASS -- TEST 'regional_restart_intel' [15:21, 00:19](852 MB) +PASS -- TEST 'regional_decomp_intel' [22:04, 00:51](852 MB) +PASS -- TEST 'regional_2threads_intel' [21:49, 00:59](900 MB) +PASS -- TEST 'regional_noquilt_intel' [21:29, 00:16](1178 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:53, 01:24](850 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [20:53, 01:17](853 MB) +PASS -- TEST 'regional_wofs_intel' [20:39, 00:36](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [30:53, 30:02] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [17:09, 01:40](910 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:56, 01:13](1088 MB) +PASS -- TEST 'rap_decomp_intel' [16:47, 01:24](916 MB) +PASS -- TEST 'rap_2threads_intel' [16:45, 01:46](999 MB) +PASS -- TEST 'rap_restart_intel' [08:10, 01:25](783 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:14, 02:11](908 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [16:05, 01:46](910 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:44, 01:52](780 MB) +PASS -- TEST 'hrrr_control_intel' [15:49, 01:01](903 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:47, 00:58](907 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [15:44, 01:24](987 MB) +PASS -- TEST 'hrrr_control_restart_intel' [10:43, 01:08](739 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:35, 01:19](905 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:22, 01:02](1865 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:05, 01:10](1854 MB) + +PASS -- COMPILE 'csawmg_intel' [19:37, 19:08] +PASS -- TEST 'control_csawmg_intel' [28:32, 00:23](875 MB) +PASS -- TEST 'control_ras_intel' [28:32, 00:57](562 MB) + +PASS -- COMPILE 'wam_intel' [18:33, 18:01] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [28:37, 00:52](1561 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:37, 20:21] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:42, 02:05](1771 MB) +PASS -- TEST 'regional_control_faster_intel' [18:33, 00:23](850 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [20:36, 19:52] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [18:19, 01:17](1505 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:06, 01:21](1497 MB) +PASS -- TEST 'control_stochy_debug_intel' [17:26, 00:52](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [17:21, 01:04](704 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:05, 00:31](1013 MB) +PASS -- TEST 'control_ras_debug_intel' [14:42, 01:00](709 MB) +PASS -- TEST 'control_diag_debug_intel' [14:09, 01:16](1565 MB) +PASS -- TEST 'control_debug_p8_intel' [14:08, 00:55](1792 MB) +PASS -- TEST 'regional_debug_intel' [14:01, 00:16](898 MB) +PASS -- TEST 'rap_control_debug_intel' [13:50, 00:43](1087 MB) +PASS -- TEST 'hrrr_control_debug_intel' [13:22, 00:53](1079 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:19, 00:47](1084 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [13:17, 00:45](1085 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:16, 00:46](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [12:55, 00:42](1170 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:55, 00:42](1088 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:54, 00:42](1091 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:54, 00:48](1091 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:38, 00:56](1086 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:43, 00:48](1081 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:42, 00:45](1083 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:38, 00:40](1084 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:34, 00:48](1081 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:14, 00:55](1093 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:19, 00:42](1088 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:18, 02:04](1089 MB) + +PASS -- COMPILE 'wam_debug_intel' [17:30, 16:27] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [09:09, 00:17](1597 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:32, 14:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:34, 01:26](957 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [28:33, 01:27](788 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [28:33, 01:58](790 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [28:33, 01:54](858 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [28:34, 01:34](844 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:33, 01:50](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 01:32](687 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:45, 00:15](669 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:38, 17:31] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:22, 01:04](1004 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:21, 00:53](1007 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 00:42](882 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:32, 14:16] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 01:21](813 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:40, 18:03] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:01, 00:54](962 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:46, 01:06](956 MB) +PASS -- TEST 'conus13km_debug_intel' [06:46, 01:20](1052 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [06:45, 01:14](724 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [06:44, 00:26](1055 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [06:37, 01:07](1123 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:32, 13:58] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:34, 00:57](995 MB) + +PASS -- COMPILE 'hafsw_intel' [18:45, 18:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:20, 02:04](620 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 00:38](968 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:18, 01:37](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [06:02, 01:21](698 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:45, 02:07](710 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 01:06](390 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:30, 02:17](407 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:18, 01:35](286 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:01, 02:14](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:10, 01:34](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 00:49](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:09, 00:46](494 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:43, 00:29](316 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [17:43, 17:18] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:38, 01:17](520 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:35, 16:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:58, 01:46](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:15, 01:35](709 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:42, 21:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:02, 01:49](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [27:48, 27:25] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [56:41, 02:05](662 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:41, 02:02](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [56:39, 00:26](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:37, 18:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [58:42, 00:48](1829 MB) + +PASS -- COMPILE 'atml_intel' [14:30, 13:40] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:25, 07:22] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:28, 09:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [00:29, 01:24](3024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [00:27, 01:58](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [00:11, 01:55](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:32, 10:24] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [58:24, 01:05](4440 MB) SYNOPSIS: -Starting Date/Time: 20240701 13:29:18 -Ending Date/Time: 20240701 15:21:40 -Total Time: 01h:52m:53s +Starting Date/Time: 20240722 17:50:57 +Ending Date/Time: 20240722 19:28:17 +Total Time: 01h:37m:51s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 01cff398b5..cd606178f6 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -58,6 +58,13 @@ elif [[ ${MACHINE_ID} = stampede ]] ; then fi module purge +elif [[ ${MACHINE_ID} = frontera ]] ; then + # We are on TACC Frontera + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /opt/apps/lmod/lmod/init/bash + fi + module purge + elif [[ ${MACHINE_ID} = gaea ]] ; then # We are on GAEA if ( ! eval module help > /dev/null 2>&1 ) ; then diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index 6158aa1657..a2d45053bf 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -138,6 +138,8 @@ 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] diff --git a/tests/parm/noahmptable.tbl b/tests/parm/noahmptable.tbl index 3ffd5b5320..44531919ed 100644 --- a/tests/parm/noahmptable.tbl +++ b/tests/parm/noahmptable.tbl @@ -217,7 +217,7 @@ !--------------------------------------------------------------------------------------------------------------------------------------------------------------------- ch2op = 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, dleaf = 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, - z0mvt = 1.09, 1.10, 0.85, 0.80, 0.80, 0.20, 0.06, 0.60, 0.50, 0.12, 0.30, 0.15, 1.00, 0.14, 0.00, 0.00, 0.00, 0.30, 0.20, 0.03, + z0mvt = 1.00, 1.50, 0.75, 0.90, 0.85, 0.20, 0.10, 0.90, 0.60, 0.20, 0.30, 0.25, 1.00, 0.25, 0.00, 0.015, 0.00, 0.30, 0.10, 0.05, hvt = 20.0, 20.0, 18.0, 16.0, 16.0, 1.10, 1.10, 13.0, 10.0, 1.00, 5.00, 2.00, 15.0, 1.50, 0.00, 0.00, 0.00, 4.00, 2.00, 0.50, hvb = 8.50, 8.00, 7.00, 11.5, 10.0, 0.10, 0.10, 0.10, 0.10, 0.05, 0.10, 0.10, 1.00, 0.10, 0.00, 0.00, 0.00, 0.30, 0.20, 0.10, z0mhvt= 0.0545, 0.055, 0.047, 0.050, 0.050, 0.182, 0.0545, 0.046, 0.050, 0.120, 0.060, 0.075, 0.067, 0.093, 0.000, 0.000, 0.000, 0.075, 0.100, 0.060, @@ -226,32 +226,34 @@ !mfsno = 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, ! c. he 12/17/2020: optimized mfsno values dependent on land type based on evaluation with snotel swe and modis scf, surface albedo mfsno = 1.00, 1.00, 1.00, 1.00, 1.00, 2.00, 2.00, 2.00, 2.00, 2.00, 3.00, 3.00, 4.00, 4.00, 2.50, 3.00, 3.00, 3.50, 3.50, 3.50, +!mfsno = 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, ! c. he 12/17/2020: optimized snow cover factor (m) in scf formulation to replace original constant 2.5*z0,z0=0.002m, based on evaluation with snotel swe and modis scf, surface albedo ! scffac = 0.008, 0.008, 0.008, 0.008, 0.008, 0.016, 0.016, 0.020, 0.020, 0.020, 0.020, 0.014, 0.042, 0.026, 0.030, 0.016, 0.030, 0.030, 0.030, 0.030, - scffac = 0.005, 0.005, 0.005, 0.005, 0.005, 0.008, 0.008, 0.010, 0.010, 0.010, 0.010, 0.007, 0.021, 0.013, 0.015, 0.008, 0.015, 0.015, 0.015, 0.015, + scffac = 0.005, 0.005, 0.005, 0.005, 0.005, 0.008, 0.008, 0.010, 0.010, 0.010, 0.010, 0.007, 0.021, 0.013, 0.015, 0.008, 0.015, 0.015, 0.015, 0.015, +! scffac = 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, cbiom = 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, ! row 1: vis ! row 2: near ir rhol_vis=0.07, 0.10, 0.07, 0.10, 0.10, 0.07, 0.07, 0.07, 0.10, 0.11, 0.105, 0.11, 0.00, 0.11, 0.00, 0.00, 0.00, 0.10, 0.10, 0.10, - rhol_nir=0.35, 0.45, 0.35, 0.45, 0.45, 0.35, 0.35, 0.35, 0.45, 0.58, 0.515, 0.58, 0.00, 0.58, 0.00, 0.00, 0.00, 0.45, 0.45, 0.45, + rhol_nir=0.35, 0.45, 0.35, 0.45, 0.45, 0.35, 0.35, 0.35, 0.45, 0.35, 0.515, 0.35, 0.00, 0.35, 0.00, 0.00, 0.00, 0.45, 0.45, 0.45, ! row 1: vis ! row 2: near ir - rhos_vis=0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.36, 0.26, 0.36, 0.00, 0.36, 0.00, 0.00, 0.00, 0.16, 0.16, 0.16, - rhos_nir=0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.58, 0.485, 0.58, 0.00, 0.58, 0.00, 0.00, 0.00, 0.39, 0.39, 0.39, + rhos_vis=0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.31, 0.26, 0.31, 0.00, 0.31, 0.00, 0.00, 0.00, 0.16, 0.16, 0.16, + rhos_nir=0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.53, 0.485, 0.53, 0.00, 0.53, 0.00, 0.00, 0.00, 0.39, 0.39, 0.39, ! row 1: vis ! row 2: near ir - taul_vis=0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.07, 0.06, 0.07, 0.00, 0.07, 0.00, 0.00, 0.00, 0.05, 0.05, 0.05, - taul_nir=0.10, 0.25, 0.10, 0.25, 0.25, 0.10, 0.10, 0.10, 0.25, 0.25, 0.25, 0.25, 0.00, 0.25, 0.00, 0.00, 0.00, 0.25, 0.25, 0.25, + taul_vis=0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.06, 0.05, 0.00, 0.05, 0.00, 0.00, 0.00, 0.05, 0.05, 0.05, + taul_nir=0.10, 0.25, 0.10, 0.25, 0.25, 0.10, 0.10, 0.10, 0.25, 0.34, 0.25, 0.34, 0.00, 0.34, 0.00, 0.00, 0.00, 0.25, 0.25, 0.25, ! row 1: vis ! row 2: near ir - taus_vis=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.220, 0.1105, 0.220, 0.000, 0.220, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, - taus_nir=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.380, 0.1905, 0.380, 0.000, 0.380, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, + taus_vis=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.120, 0.1105, 0.120, 0.000, 0.120, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, + taus_nir=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.250, 0.1905, 0.250, 0.000, 0.250, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, - xl = 0.010, 0.010, 0.010, 0.250, 0.250, 0.010, 0.010, 0.010, 0.010, -0.30, -0.025, -0.30, 0.000, -0.30, 0.000, 0.000, 0.000, 0.250, 0.250, 0.250, + xl = 0.010, 0.10, 0.010, 0.250, 0.250, 0.010, 0.010, 0.010, 0.010, -0.30, -0.025, -0.30, 0.000, -0.30, 0.000, 0.000, 0.000, 0.250, 0.250, 0.250, ! make cwpvt vegetation dependent according to j. goudriaan, crop micrometeorology: a simulation study (simulation monographs), 1977). c. he, 12/17/2020 ! cwpvt = 0.18, 0.67, 0.18, 0.67, 0.29, 1.0, 2.0, 1.3, 1.0, 5.0, 1.17, 1.67, 1.67, 1.67, 0.18, 0.18, 0.18, 0.67, 1.0, 0.18, cwpvt = 0.09, 0.335, 0.09, 0.335, 0.145, 0.5, 1.0, 0.65, 0.5, 2.5, 0.585, 0.835, 0.835, 0.835, 0.09, 0.09, 0.09, 0.335, 0.5, 0.09, @@ -335,10 +337,10 @@ !-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 soil color index for soil albedo !-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - albsat_vis = 0.25, 0.23, 0.21, 0.20, 0.19, 0.18, 0.17, 0.16, 0.15, 0.14, 0.13, 0.12, 0.11, 0.10, 0.09, 0.08, 0.07, 0.06, 0.05, 0.04 ! saturated soil albedos - albsat_nir = 0.50, 0.46, 0.42, 0.40, 0.38, 0.36, 0.34, 0.32, 0.30, 0.28, 0.26, 0.24, 0.22, 0.20, 0.18, 0.16, 0.14, 0.12, 0.10, 0.08 ! saturated soil albedos - albdry_vis = 0.36, 0.34, 0.32, 0.31, 0.30, 0.29, 0.28, 0.27, 0.26, 0.25, 0.24, 0.23, 0.22, 0.20, 0.18, 0.16, 0.14, 0.12, 0.10, 0.08 ! dry soil albedos - albdry_nir = 0.61, 0.57, 0.53, 0.51, 0.49, 0.48, 0.45, 0.43, 0.41, 0.39, 0.37, 0.35, 0.33, 0.31, 0.29, 0.27, 0.25, 0.23, 0.21, 0.16 ! dry soil albedos + albsat_vis = 0.21, 0.20, 0.18, 0.17, 0.16, 0.15, 0.14, 0.13, 0.13, 0.12, 0.11, 0.10, 0.10, 0.09, 0.08, 0.08, 0.08, 0.07, 0.07, 0.06 ! saturated soil albedos + albsat_nir = 0.42, 0.40, 0.36, 0.34, 0.32, 0.30, 0.28, 0.26, 0.26, 0.24, 0.22, 0.20, 0.20, 0.18, 0.16, 0.16, 0.16, 0.14, 0.14, 0.13 ! saturated soil albedos + albdry_vis = 0.31, 0.30, 0.28, 0.27, 0.26, 0.24, 0.23, 0.22, 0.22, 0.22, 0.20, 0.19, 0.20, 0.18, 0.16, 0.16, 0.16, 0.14, 0.14, 0.13 ! dry soil albedos + albdry_nir = 0.52, 0.50, 0.46, 0.44, 0.42, 0.40, 0.38, 0.37, 0.36, 0.34, 0.32, 0.30, 0.30, 0.28, 0.27, 0.27, 0.27, 0.26, 0.25, 0.25 ! dry soil albedos albice = 0.80, 0.55 ! albedo land ice: 1=vis, 2=nir alblak = 0.60, 0.40 ! albedo frozen lakes: 1=vis, 2=nir omegas = 0.8 , 0.4 ! two-stream parameter omega for snow @@ -397,7 +399,7 @@ class_sno_age = 3600.0 ! snow aging e-folding time (s) in class albedo scheme class_alb_new = 0.84 ! fresh snow albedo in class scheme psiwlt = -150.0 !metric potential for wilting point (m) - z0soil = 0.002 ! bare-soil roughness length (m) (i.e., under the canopy) + z0soil = 0.015 ! bare-soil roughness length (m) (i.e., under the canopy) z0lake = 0.01 ! lake surface roughness length (m) / diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 403ecc4506..a8aba0860d 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -14,6 +14,13 @@ ECFLOW_RUNNING=false jobid=0 +redirect_out_err() { + ( set -e -o pipefail ; ( "$@" 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out ) + # The above shell redirection copies stdout to "out" and stderr to "err" + # while still sending them to stdout and stderr. It ensures the entire + # redirect_out_err command will return non-zero if "$@" or tee return non-zero. +} + function compute_petbounds_and_tasks() { # each test MUST define ${COMPONENT}_tasks variable for all components it is using @@ -373,10 +380,9 @@ check_results() { if [[ ${test_status} = 'FAIL' ]]; then echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}" - - if [[ ${ROCOTO} = true || ${ECFLOW} == true ]]; then - exit 1 - fi + return 1 + else + return 0 fi } @@ -427,7 +433,7 @@ rocoto_create_compile_task() { cat << EOF >> "${ROCOTO_XML}" - &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} 2>&1 | tee &LOG;/compile_${COMPILE_ID}.log + bash -c 'set -xe -o pipefail ; &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} 2>&1 | tee &LOG;/compile_${COMPILE_ID}.log' compile_${COMPILE_ID} ${ACCNR} ${COMPILE_QUEUE} @@ -471,7 +477,7 @@ rocoto_create_run_task() { cat << EOF >> "${ROCOTO_XML}" ${DEP_STRING} - &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} 2>&1 | tee &LOG;/run_${TEST_ID}${RT_SUFFIX}.log + bash -c 'set -xe -o pipefail ; &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} 2>&1 | tee &LOG;/run_${TEST_ID}${RT_SUFFIX}.log' ${TEST_ID}${RT_SUFFIX} ${ACCNR} ${ROCOTO_NODESIZE:+${ROCOTO_NODESIZE}} diff --git a/tests/run_compile.sh b/tests/run_compile.sh index a9bf0070b6..1685f89653 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -1,5 +1,6 @@ #!/bin/bash set -eux +set -o pipefail echo "PID=$$" SECONDS=0 @@ -81,10 +82,7 @@ if [[ ${ROCOTO} = 'false' ]]; then submit_and_wait job_card else chmod u+x job_card - ( ./job_card 2>&1 1>&3 3>&- | tee err || true ) 3>&1 1>&2 | tee out - # The above shell redirection copies stdout to "out" and stderr to "err" - # while still sending them to stdout and stderr. It does this without - # relying on bash-specific extensions or non-standard OS features. + redirect_out_err ./job_card fi #ls -l "${PATHTR}/tests/fv3_${COMPILE_ID}.exe" diff --git a/tests/run_test.sh b/tests/run_test.sh index e2dcb31196..ace4fd0cf1 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -1,5 +1,6 @@ #!/bin/bash set -eux +set -o pipefail echo "PID=$$" SECONDS=0 @@ -364,17 +365,24 @@ elif [[ ${SCHEDULER} = 'slurm' ]]; then fi fi +# This "if" block is part of the rt.sh self-tests in error-test.conf. +# It emulates run_test.sh not being able to populate the work directory. +if [[ "${JOB_SHOULD_FAIL:-NO}" == WHEN_COPYING ]] ; 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 + ################################################################################ # Submit test job ################################################################################ export OMP_ENV=${OMP_ENV:-""} if [[ ${SCHEDULER} = 'none' ]]; then - ulimit -s unlimited if [[ ${CI_TEST} = 'true' ]]; then - eval "${OMP_ENV}" mpiexec -n "${TASKS}" ./fv3.exe >out 2> >(tee err >&3 || true) + eval "${OMP_ENV}" redirect_out_err mpiexec -n "${TASKS}" ./fv3.exe else - mpiexec -n "${TASKS}" ./fv3.exe >out 2> >(tee err >&3 || true) + redirect_out_err mpiexec -n "${TASKS}" ./fv3.exe fi else @@ -383,18 +391,16 @@ else submit_and_wait job_card else chmod u+x job_card - ( ./job_card 2>&1 1>&3 3>&- | tee err || true ) 3>&1 1>&2 | tee out - # The above shell redirection copies stdout to "out" and stderr to "err" - # while still sending them to stdout and stderr. It does this without - # relying on bash-specific extensions or non-standard OS features. + redirect_out_err ./job_card fi fi skip_check_results=${skip_check_results:-false} +results_okay=YES if [[ ${skip_check_results} = false ]]; then - check_results || true - # The above call will exit with an error on its own and does - # not need to cause run_test to TRAP the failure and error out itself. + if ( ! check_results ) ; then + results_okay=NO + fi else { echo @@ -410,7 +416,7 @@ if [[ ${SCHEDULER} != 'none' ]]; then cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt" fi -if [[ ${ROCOTO} = true ]]; then +if [[ ${results_okay} == YES ]]; then remove_fail_test fi diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..972378d3ac 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,91 @@ +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c192 intel +control_c384 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +merra2_thompson intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel +control_wam intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_diag_debug intel +control_debug_p8 intel +rrfs_v1beta_debug intel +gnv1_c96_no_nest_debug intel +control_wam_debug intel +gnv1_nested intel +datm_cdeps_lnd_gswp3 intel +datm_cdeps_lnd_era5 intel +datm_cdeps_lnd_era5_rst intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd_sbs intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +regional_atmaq_debug intel +control_c48 gnu +control_p8 gnu +control_p8_ugwpv1 gnu +rrfs_v1beta gnu +control_diag_debug gnu +rrfs_v1beta_debug gnu +control_debug_p8 gnu +gnv1_c96_no_nest_debug gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index 00ed1c8f91..66c0a88240 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -91,4 +91,12 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 -fi \ No newline at end of file +fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 722fa03662..14f127024e 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -147,3 +147,11 @@ export NSTF_NAME=2,1,0,0,0 export CDMBWD=${CDMBWD_c384} export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d index 6aa2ce2f5f..c4fca78a23 100644 --- a/tests/tests/cpld_bmark_p8_35d +++ b/tests/tests/cpld_bmark_p8_35d @@ -102,3 +102,11 @@ export NSTF_NAME=2,1,0,0,0 export CDMBWD=${CDMBWD_c384} export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 1aec6e3e71..41f8d426b4 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -141,3 +141,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index cf1484d37e..0a21f62be7 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -138,3 +138,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index f96caf3733..b99fb22832 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -83,3 +83,11 @@ export eps_imesh=2.5e-1 export CICE_GRIDICE=C export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 890ff98596..01426380af 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -128,3 +128,11 @@ export IOPT_DIAG=1 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index 6ebbf0047a..3e59cabc9c 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -140,3 +140,11 @@ export ODA_INCUPD_UV="True" if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index 728a896bd6..f191cc8dd5 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -86,3 +86,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_noaero_p8_agrid b/tests/tests/cpld_control_noaero_p8_agrid index 72cf32df77..5036092ba4 100644 --- a/tests/tests/cpld_control_noaero_p8_agrid +++ b/tests/tests/cpld_control_noaero_p8_agrid @@ -96,3 +96,11 @@ export DIAG_TABLE=diag_table_template export UFS_CONFIGURE=ufs.configure.s2s_aoflux_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index 0e33289f10..34bcd8d921 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -104,3 +104,11 @@ export DIAG_TABLE=diag_table_template export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 60e9de59ca..67243979f3 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -85,3 +85,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index 1612b044ff..30ed1593fb 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -86,3 +86,11 @@ export V2_SFC_FILE=true if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster index bc89653c23..fcf93cd106 100644 --- a/tests/tests/cpld_control_p8_faster +++ b/tests/tests/cpld_control_p8_faster @@ -81,3 +81,11 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index 0668d61a0a..b01765abdf 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -81,3 +81,11 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 17bb7805ef..252481a48a 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -105,3 +105,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 index 94cb48419d..9618a05e6b 100644 --- a/tests/tests/cpld_control_qr_p8 +++ b/tests/tests/cpld_control_qr_p8 @@ -82,3 +82,11 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index eedbe81193..428f1a1a65 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -87,3 +87,11 @@ export IOPT_DIAG=1 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 6476e7540b..7152ceb68c 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -120,3 +120,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index cd3d746d8c..ec5114a81d 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -77,3 +77,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index 2b11c77eb8..ed304b3b3d 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -76,3 +76,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index fa7be3c086..e0a2383ce5 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -98,3 +98,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera && $RT_COMPILER = gnu ]] || [[ $MACHINE_ID = jet ]]; then WLCLK=50 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index ba55cbd6ae..6c44601b3f 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -86,3 +86,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 19076b671e..1f204a4aaa 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -94,8 +94,6 @@ export np2=`expr $CICE_NPROC / 2` export CICE_BLCKX=`expr $NX_GLB / $np2` export CICE_BLCKY=`expr $NY_GLB / 2` - - export atm_omp_num_threads=$THRD_cpl_unstr export med_omp_num_threads=$atm_omp_num_threads @@ -133,3 +131,11 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. export IOPT_DIAG=1 + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index fe90cf0412..84756f04d6 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -86,3 +86,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index 18dcc1ee74..cd536948d2 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -104,3 +104,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index 0d71a41f5c..d6a3b39d2d 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -164,3 +164,11 @@ export CICE_USE_RESTART_TIME=.true. export MOM6_RESTART_SETTING=r export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index 54415221ac..dce8254328 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -155,3 +155,11 @@ export CICE_USE_RESTART_TIME=.true. export MOM6_RESTART_SETTING=r export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index a9e891519d..bafb92a4b5 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -169,3 +169,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index 62a97d4fb3..ad4a7be818 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -133,3 +133,11 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. export IOPT_DIAG=1 + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index ba3fa68606..edbba45c3e 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -92,3 +92,11 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index 01a351be21..e9e8a9d510 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -108,3 +108,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index 791105837c..79ebaaf10e 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -89,3 +89,11 @@ export eps_imesh=2.5e-1 export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_s2sa_p8 b/tests/tests/cpld_s2sa_p8 index efb61f024a..fb827e0b83 100644 --- a/tests/tests/cpld_s2sa_p8 +++ b/tests/tests/cpld_s2sa_p8 @@ -76,3 +76,11 @@ export DIAG_TABLE=diag_table_template export UFS_CONFIGURE=ufs.configure.s2sa_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index 94aa503d8f..3c2c18e6b1 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -166,3 +166,11 @@ export FIELD_TABLE=field_table_thompson_noaero_tke export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/dependency_unmet b/tests/tests/dependency_unmet new file mode 100644 index 0000000000..22e56406e7 --- /dev/null +++ b/tests/tests/dependency_unmet @@ -0,0 +1,86 @@ +############################################################################### +# +# Regression test self-test: a job that is never submitted due to a failed dependency. +# This file was modified from control_c48. +# +############################################################################### + +export TEST_DESCR="This test should use a compile job that fails. Its purpose is to ensure the rt.sh workflow won't submit the dependent job." + +export CNTL_DIR=control_c48 + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.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" + +export_fv3 +export_tiled + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN + +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/fail_to_copy b/tests/tests/fail_to_copy new file mode 100644 index 0000000000..9158005b33 --- /dev/null +++ b/tests/tests/fail_to_copy @@ -0,0 +1,85 @@ +############################################################################### +# +# Regression test self-test: a job that fails to copy inputs. +# This file was modified from control_c48. +# +############################################################################### + +# A special flag that tells the job to fail at runtime before the job_card: +export JOB_SHOULD_FAIL=WHEN_COPYING + +export TEST_DESCR="The rt.sh workflow shouldn't complete when this test is enabled because run_test.sh will abort before the job_card." + +export CNTL_DIR=control_c48 + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.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" + +export_fv3 +export_tiled + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/fail_to_run b/tests/tests/fail_to_run new file mode 100644 index 0000000000..cf906e532e --- /dev/null +++ b/tests/tests/fail_to_run @@ -0,0 +1,89 @@ +############################################################################### +# +# Regression test self-test: a job that fails to run the model. +# This file was modified from control_c48. +# +############################################################################### + +# A special flag that tells the job to fail at runtime inside the job_card +export JOB_SHOULD_FAIL=WHEN_RUNNING + +export TEST_DESCR="The rt.sh workflow shouldn't complete when this test is enabled because the job_card will abort." + +export CNTL_DIR=control_c48 + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.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" + +export_fv3 +export_tiled + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN + +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi